SOURCES: drupal.conf - recognize php5 module under apache1

glen glen at pld-linux.org
Tue Dec 6 16:23:10 CET 2005


Author: glen                         Date: Tue Dec  6 15:23:03 2005 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- recognize php5 module under apache1

---- Files affected:
SOURCES:
   drupal.conf (1.9 -> 1.10) 

---- Diffs:

================================================================
Index: SOURCES/drupal.conf
diff -u SOURCES/drupal.conf:1.9 SOURCES/drupal.conf:1.10
--- SOURCES/drupal.conf:1.9	Wed Oct 26 10:38:46 2005
+++ SOURCES/drupal.conf	Tue Dec  6 16:22:57 2005
@@ -22,13 +22,22 @@
     # 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
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/drupal.conf?r1=1.9&r2=1.10&f=u




More information about the pld-cvs-commit mailing list