Hosting wordpress on iis 7

by Eric Woersching

Introduction

WordPress is a blog publishing application and content management system. According to wordpress.org,WordPress is "a state-of-the-art semantic personal publishing platform with a focus on aesthetics, Web standards, and usability." The following sections describe how to install and configure WordPress for use with FastCGI on Internet Information Services 7 (IIS 7) and above. This document assumes that you have completed the setup and configuration of the FastCGI extension and PHP libraries .

hosting

The easiest way to install WordPress is by downloading it from the Windows® Web App Gallery. If you need the Microsoft® Web Platform, you can install the components with the Microsoft® Web Platform Installer (Web PI), which is also available at the Windows Web App Gallery .

The following article provides guidance for installing WordPress manually. The instructions have been tested and found to work in the following configurations:

  • Windows Server® 2008 operating system
  • IIS 7
  • PHP 5.2.9
  • MySQL 5.1.34
  • WordPress 2.8.5

Prerequisites

From the base default configuration file provided by PHP, modify the following lines in your Php.ini configuration:

  • Define extension\_dir as c:\php\ext (for example, the location of your php extensions directory).
  • Uncomment extension=php\_mysql.dll in the extensions list to enable MySQL support.

Download and Unpack the Application

First, download the latest stable release of WordPress. For this article, WordPress version 2.8.5 was used. Uncompress the WordPress files and copy the files to C:\Inetpub\wwwroot\wordpress or another directory of your choosing. There is no need to modify permissions on the WordPress Web directory, because the default permissions suffice.

Set Up the Database

Before starting the installation procedure for WordPress, you must create a database on your server. Also create a user and grant this user "db ownership" permission to the database. This article uses the following database information:

Modify the Configuration File

Modify the WordPress configuration file to connect to the database.

  1. From Windows® Explorer. navigate to the installation directory C:\inetpub\wwwroot\wordpress. and rename the file wp-config-sample.php to wp-config.php .
  2. Edit wp-config.php ; change the DB_NAME. DB_USER. DB_PASSWORD. and DB_HOST values as follows:

Setup and Configure the Application

  1. From Windows® Internet Explorer®. go to localhost/wordpress/wp-admin/install.php .

Type the name of your blog and your e-mail address. and then click Install WordPress.

Hosting wordpress on iis 7 if the

Figure 1: Enter information

Note the temporary password assigned for the administrator account.

Figure 2: Note the administrator password

Figure 3: Log on to blog

The Welcome page appears.

Figure 4: Welcome page

Enable "Pretty Permalinks"

Typically, WordPress users must use "almost pretty" URLs (for example, contoso.com/index.php/yyyy/mm/dd/post-name/ ). With the URL Rewrite module, you can create "Pretty Permalinks" (for example, example.com/year/month/day/post-name/ ) for WordPress blogs hosted on IIS.

The steps that follow assume that WordPress is installed in a Web site root directory. If WordPress is installed in a subdirectory, then the rewrite rules must be included in the Web.config file located within the same subdirectory as the WordPress files.

  1. Install URL Rewrite Go Live release.
  2. Log on to WordPress as an administrator.
  3. Click the Settings button.

Click the Permalinks tab for the Customize Permalink Structure page.

Figure 5: Customize permalink structure page

  • Select Custom Structure. and then type
    /%year%/%monthnum%/%day%/%postname%/ in the Custom Structure text box.
  • Click Save Changes. You will see that all the blog post links have URLs that follow the format you have specified; however, if you click any link, the Web server returns a 404 - File Not Found error, because WordPress relies on a URL rewriting capability within a server to rewrite requests that have "pretty permalinks" to an Index.php file.
  • Create Rewrite Rule

    1. Open the Web.config file (located in the same directory as the WordPress files). If you do not have a Web.config file in the WordPress directory, create it.

    Copy and paste the following XML section into the system.webServer element:

    This rule matches any requested URL; if the URL does not correspond to a file or a folder on a file system, then the rule rewrites the URL to Index.php and determines which content to serve based on the REQUEST_URI server variable that contains the original URL before it was modified by the rule.

    Test the Rewrite Rule

    After the rewrite rule is saved to the Web.config file, open a Web browser, and then click any one of the permalinks in WordPress blog. You should see the correct content returned by the Web server for every permalink.


    Figure 6: Blog welcome page

    This article updates " WordPress on IIS" by Eric Woersching, published on September 11, 2008.

    Links for Further Information

    Watch this video!

    Related articles

    Hosting wordpress on iisby Eric Woersching Introduction WordPress is a blog publishing application and content management system. According to wordpress.org,WordPress is "a state-of-the-art semantic personal...
    Wp-signup.php wordpress multi site hostingDo you really need a network? The sites in a multisite network are separate, very much like the separate blogs at WordPress.com. They are not interconnected like things in other kinds of...
    Hosting windows o linux per wordpress websiteAre you wondering which among the two (Linux or Windows) would be the best choice for your website? Whether you are a beginner planning to start a blog or a blogger thinking to migrate from one...
    Webhostinghub install wordpress wampMost webmasters get to know how to install WordPress on website and that can be completed with Softaculous, Simplescript, Fantastico, FTP, or some other methods. However, having WordPress...
    Web hosting one-click wordpress install wampHow to Install WordPress WordPress, as one of the most user-friendly CMSs online, has been downloaded for millions of thousands of times all over the world. Its easy-to-understand interface,...