Return to Snippet

Revision: 11870
at March 7, 2009 12:25 by zachharkey


Updated Code
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.

# PHP 4, Apache 1.
<IfModule mod_php4.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
  php_value memory_limit                    96M
  php_value post_max_size                   32M
  php_value upload_max_filesize             32M
  php_value max_input_time                  180
</IfModule>

# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
  php_value memory_limit                    96M
  php_value post_max_size                   32M
  php_value upload_max_filesize             32M
  php_value max_input_time                  180
</IfModule>

# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
  php_value memory_limit                    96M
  php_value post_max_size                   32M
  php_value upload_max_filesize             32M
  php_value max_input_time                  180
</IfModule>

Revision: 11869
at February 22, 2009 23:21 by zachharkey


Initial Code
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.

# PHP 4, Apache 1.
<IfModule mod_php4.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
  php_value memory_limit                    96M
  php_value post_max_size                   32M
  php_value upload_max_filesize             32M
  php_value max_input_time                  180
</IfModule>

# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
  php_value memory_limit                    96M
  php_value post_max_size                   32M
  php_value upload_max_filesize             32M
  php_value max_input_time                  180
</IfModule>

# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
  php_value memory_limit                    96M
  php_value post_max_size                   32M
  php_value upload_max_filesize             32M
  php_value max_input_time                  180
</IfModule>                                    

Initial URL


Initial Description
This is a replacement for the default PHP settings in Drupal's .htaccess file. Increasing the memory_limit, max_post_size etc. prevents a lot of errors, especially when using image modules.

Initial Title
Standard modifications to Drupal's default .htaccess

Initial Tags
textmate, htaccess, drupal

Initial Language
Apache