Changeset 905

Show
Ignore:
Timestamp:
03/02/07 12:57:16 (2 years ago)
Author:
donncha
Message:

PHP usually needs more memory

Files:

Legend:

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

    r697 r905  
    7676PHP 
    7777=== 
    78 For security reasons, it's very important that PHP be configured as follows: 
    79  
    80781. Don't display error messages to the browser. This is almost always 
    8179turned off but sometimes when you're testing you turn this on and forget 
    8280to reset it. 
    8381 
    84 2. GLOBAL variables must be turned off. This is one of the first things 
     822. If your PHP is compiled with memory limit checks, the default is 8MB 
     83which is much too small. You should increase this to at least 32MB or 64MB 
     84to avoid PHP out of memory errors. Look for "memory_limit" in your php.ini 
     85file. 
     86 
     873. GLOBAL variables must be turned off. This is one of the first things 
    8588any security aware admin will do. These days the default is for it to 
    8689be off! 
    87  
    88 3. If you want to restrict blog signups, set the restrict domain email  
    89 setting in the admin. 
    9090 
    9191The easiest way of configuring it is via the .htaccess file that is 
     
    124124settings to be updated. 
    125125 
     1264. If you want to restrict blog signups, set the restrict domain email  
     127setting in the admin. 
     128 
    126129 
    127130UPGRADING