View Single Post
  #1   IP: 218.2.66.101
Old 2010-01-25, 08:31 PM
topvip topvip is offline
超级版主
 
Join Date: 2006-01-04
Posts: 1206
topvip 正向着好的方向发展
Default Install WordPress on IIS

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). This document assumes that you have completed the setup and configuration of the FastCGI extension and PHP libraries.

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:

•Database name: wordpress
•Database user: wordpress
•Account password: wordpress
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:

<?php

// ** MySQL settings ** //

define('DB_NAME', 'wordpress'); // The name of the database

define('DB_USER', 'wordpress'); // Your MySQL username

define('DB_PASSWORD', 'wordpress'); // ...and password

define('DB_HOST', '192.168.0.4'); // Change this to the IP address of your database

define('DB_CHARSET', 'utf8');

define('DB_COLLATE', '');



// You can have multiple installations in one database if you give each a unique prefix

$table_prefix = 'wp_'; // Use only numbers, letters, and underscores.



// Change this to localize WordPress. A corresponding MO file for the

// chosen language must be installed to wp-content/languages.

// For example, install de.mo to wp-content/languages and set WPLANG to 'de'

// to enable German language support.

define ('WPLANG', '');



/* That is all, stop editing. */



define('ABSPATH', dirname(__FILE__).'/');

require_once(ABSPATH.'wp-settings.php');

?>
Reply With Quote