Changeset 988
- Timestamp:
- 05/24/07 12:54:19 (1 year ago)
- Files:
-
- trunk/README.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/README.txt
r905 r988 15 15 1. Download and unzip the WordPress MU package, if you haven't already. 16 16 The unzipped files will be created in a directory named "wordpressmu" 17 followed by a version or "wpmu" followed by a date. For the sake of 18 convenience, rename this folder "wordpressmu" before continuing. 17 followed by a version number. 19 18 2. Create a database for WordPress MU on your web server, as well as a 20 19 MySQL user who has all privileges for accessing and modifying it. 21 20 3. Place the WordPress MU files in the desired location on your web server: 22 21 * If you want to integrate WordPress MU into the root of your 23 domain (e.g. http://example.com/), move or upload all contents of24 the unzipped WordPress MU directory (but excluding the directory25 itself) into the rootdirectory of your web server.22 domain (e.g. http://example.com/), move or upload all the files and 23 directories of the unzipped WordPress MU directory into the root 24 directory of your web server. 26 25 * If you want to have your WordPress MU installation in its own 27 26 subdirectory on your web site (e.g. http://example.com/blogs/), … … 32 31 "wordpressmu" to "blogs" and upload it to the root directory of your 33 32 web server. 34 4. Run the WordPress MU installation script by accessing index.php 33 4. Make sure your install directory and the wp-contents directory are 34 writeable by the webserver. 35 5. Run the WordPress MU installation script by accessing index.php 35 36 in your favorite web browser. 36 37 * If you installed WordPress MU in the root directory, you should … … 127 128 setting in the admin. 128 129 130 ERROR LOGGING 131 ============= 132 If you are developing a site based on WPMU it is recommended that you 133 turn on PHP error logging. Look in your php.ini for the section marked 134 "Error handling and logging" where you can configure it. 135 136 Mysql database errors are logged to the PHP error log if enabled or it 137 can also send error reports to a file of your choice. After installing, 138 edit wp-config.php and define a constant, "ERRORLOGFILE", pointing at 139 your MySQL error log. This file must be writeable by your webserver. 140 Please don't log to a file visible by your webserver or people may 141 figure out they can download it. 142 Example definition: 143 define( "ERRORLOGFILE", "/tmp/mysql.log" ); 144 129 145 130 146 UPGRADING
