Archive for the ‘Windows 2008 Server’ category

How to setup a website in IIS7 (Internet Information Server)

September 19th, 2009
1. To get started, lets
goto the Server Manager and open up the IIS manager. You can do this by
going to Start -> Administrative Tools -> Internet Information Services
(IIS) Manager.

2.Once IIS Manager opens,
expand out the web server and then expand the Sites folder. Right click
on sites and then click on Add Web Site

3. In the Add Web Site
window we have some basic information to fill out for a static site:

  • Site Name – Name of the site, this will be
    either domain.com or *.domain.com (Where * would represent a sub
    domain name such as www or blog for example).
  • Physical Path – The location on the local
    server that will hold the files for the website. If you did not set
    this up beforehand you can create a folder through this interface.
  • Type – choose either http or https depending
    on whether your site will use Secure Socket Layer (SSL) certificate
    or not.
  • IP Address – From the dropdown you can
    specify what IP the website should answer on or use the default
    switch of All Unassigned. Now, if you have multiple IP addresses,
    you can simply choose the one you wish to assign to the website as
    well. Lastly, if you even neeed to change the IP address, you can do
    so by going back and clicking on binding’s, which will take you to
    the section that allows IP address changes.
  • Host Name – If you would like this site to
    respond to other domain names you can put these here.
4. That’s it. You’ve just configured your
first website in IIS7. While it is a bit different from IIS6, the
process is still the same.

Installing FastCGI And PHP on Windows Server 2008

August 29th, 2009
Credit to http://www.thewebhostinghero.com

Installing FastCGI And PHP on Windows Server 2008

As opposed to previous versions of Windows Server, the FastCGi module is already bundled with Windows Server 2008 so you don’t have to install it.

First of all, let’s make sure that the CGI role service is installed. Click on Start => Programs => Administrative Tools => Server Manager. Expand Roles, right-click on Web Server (IIS) and select Add Role Services. Make sure that CGI is checked and if not proceed with its installation.

iis7-cgi-role-service.jpg

Next head over to PHP.net’ download page and download the PHP Non-thread-safe Win32 binaries. At the time of this writing, the latest version of PHP is 5.2.5. Extract the content from the PHP archive into c:\php.

Launch the Internet Information Server Manager by clicking on Start => Programs => Administrative Tools => Internet Information Server Manager. Select your server from the left panel and then double-click on the Handler Mappings icon.

iis7-handler-mappings1.jpg

Click on Add Module Mapping from the right column:

iis-add-module-mapping.jpg

Fill-in the PHP module mapping information as illustrated below and click on OK when done:

iis-php-cgi-mapping.jpg

At this point PHP should now be working even though there no php.ini configuration file yet. To find out if PHP files are parsed correctly, create a new file at the root of website’s folder and name it phpinfo.php. Insert the following content into the file and save it:

<?php phpinfo(); ?>

Now try pointing your web browser to http://yourserver.com/phpinfo.php. If everything works properly you should see this page:

phpinfo.jpg

Configuring PHP

By default, IIS will look for PHP’s configuration file (php.ini) in c:\windows. To change this, launch the registry editor (Start => Run => regedit) and add a new key named PHP in HKEY_LOCAL_MACHINE\SOFTWARE\. Under the newly created key, create a new value named IniFilePath and set its value data to c:\php.

php-registry.jpg

Close the registry editor when you’re done. Using the Windows Explorer, rename c:\php\php.ini-recommended to c:\php\php.ini and open it with your favorite text editor (no word processor). Find the extension_dir parameter and set its value to “c:\php\ext”. You might also want to uncomment extension=php_mysqli.dll and / or extension=php_mssql.dll if you plan to use MySQL or MS-SQL.

Once you’re done editing PHP’s configuration file, save it and close your file editor. You will need to restart IIS in order to apply the changes. This can be done through the IIS Manager:

restart-iis.jpg

The color depth of my remote desktop session has become low (256 colors/8 bit). How can I fix this?

June 4th, 2009

This seems to be related to a known problem with Windows Server 2003 Service Pack 2: “The color depth is unexpectedly changed to 8-bit when a high screen-resolution setting is used in a terminal-server session that is connected to a Windows Server 2003-based computer”

Applying the hotfix from http://support.microsoft.com/kb/942610 fixes the problem.

If applying the hotfix and restarting the server still does not fix the problem, confirm if the following registry key exists on your server:

Registry subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
\Terminal Server
Registry entry: AllowHigherColorDepth
Type: REG_DWORD
Value: 1

If it does not exist, add it and restart the server.