]> git.pld-linux.org Git - packages/drupal.git/commitdiff
- recognize php5 module under apache1
authorElan Ruusamäe <glen@pld-linux.org>
Tue, 6 Dec 2005 15:22:57 +0000 (15:22 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    drupal.conf -> 1.10

drupal.conf

index 7b7024a7c0b832c62bc6bb0abe6305f4f37e6e07..8d06f07a2d8ec821aadf940edaabf3857cdcc810 100644 (file)
     # Override PHP settings. More exist in sites/default/settings.php, but
     # the following cannot be changed at runtime. The first IfModule is
     # for Apache 1.3, the second for Apache 2.
+    # php4 module under Apache 1.3
     <IfModule mod_php4.c>
         php_value magic_quotes_gpc                0
         php_value register_globals                0
         php_value session.auto_start              0
         php_value memory_limit                  12M
     </IfModule>
+    # php5 module under Apache 1.3
+    <IfModule mod_php5.c>
+        php_value magic_quotes_gpc                0
+        php_value register_globals                0
+        php_value session.auto_start              0
+        php_value memory_limit                  12M
+    </IfModule>
 
+    # php under Apache 2.x module
     <IfModule sapi_apache2.c>
         php_value magic_quotes_gpc                0
         php_value register_globals                0
This page took 0.122345 seconds and 4 git commands to generate.