Changeset 1511

Show
Ignore:
Timestamp:
01/13/08 15:16:38 (8 months ago)
Author:
ewout
Message:

Increasing default php memory limit to 32M

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/htaccess-dist

    r1495 r1511  
    2222# php 4, apache 1.x 
    2323<IfModule mod_php4.c> 
    24         # default memory limit to 16Mb 
    25         php_value memory_limit 16777216 
     24        # default memory limit to 32Mb 
     25        php_value memory_limit 32M 
    2626        # to make sure register global is off 
    2727        php_value register_globals 0 
     
    3636# php 4, apache 2 
    3737<IfModule sapi_apache2.c> 
    38         # default memory limit to 16Mb 
    39         php_value memory_limit 16777216 
     38        # default memory limit to 32Mb 
     39        php_value memory_limit 32M 
    4040        # to make sure register global is off 
    4141        php_value register_globals 0 
     
    5050# php 5, apache 1 and 2 
    5151<IfModule mod_php5.c> 
    52         # default memory limit to 16Mb 
    53         php_value memory_limit 16777216 
     52        # default memory limit to 32Mb 
     53        php_value memory_limit 32M 
    5454        # to make sure register global is off 
    5555        php_value register_globals 0