Changeset 988

Show
Ignore:
Timestamp:
05/24/07 12:54:19 (1 year ago)
Author:
donncha
Message:

Minor change to install docs and add error logging docs fixes #318 #326 and #342

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/README.txt

    r905 r988  
    15151. Download and unzip the WordPress MU package, if you haven't already. 
    1616   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. 
    19182. Create a database for WordPress MU on your web server, as well as a  
    2019   MySQL user who has all privileges for accessing and modifying it. 
    21203. Place the WordPress MU files in the desired location on your web server: 
    2221   * If you want to integrate WordPress MU into the root of your  
    23      domain (e.g. http://example.com/), move or upload all contents of  
    24      the unzipped WordPress MU directory (but excluding the directory  
    25      itself) into the root directory 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. 
    2625   * If you want to have your WordPress MU installation in its own  
    2726     subdirectory on your web site (e.g. http://example.com/blogs/),  
     
    3231     "wordpressmu" to "blogs" and upload it to the root directory of your  
    3332     web server.  
    34 4. Run the WordPress MU installation script by accessing index.php 
     334. Make sure your install directory and the wp-contents directory are 
     34   writeable by the webserver. 
     355. Run the WordPress MU installation script by accessing index.php 
    3536   in your favorite web browser. 
    3637   * If you installed WordPress MU in the root directory, you should  
     
    127128setting in the admin. 
    128129 
     130ERROR LOGGING 
     131============= 
     132If you are developing a site based on WPMU it is recommended that you 
     133turn on PHP error logging. Look in your php.ini for the section marked 
     134"Error handling and logging" where you can configure it. 
     135 
     136Mysql database errors are logged to the PHP error log if enabled or it 
     137can also send error reports to a file of your choice. After installing, 
     138edit wp-config.php and define a constant, "ERRORLOGFILE", pointing at 
     139your MySQL error log. This file must be writeable by your webserver. 
     140Please don't log to a file visible by your webserver or people may  
     141figure out they can download it. 
     142Example definition: 
     143define( "ERRORLOGFILE", "/tmp/mysql.log" ); 
     144 
    129145 
    130146UPGRADING