sniper Thu Apr 28 21:37:37 2005 EDT
Modified files: (Branch: PHP_5_0)
/php-src php.ini-dist php.ini-recommended
Log:
MFH: Add auto_globals_jit entry to php.ini-* (bug #29514)
http://cvs.php.net/diff.php/php-src/php.ini-dist?r1=1.215.2.10&r2=1.215.2.11&ty=u
Index: php-src/php.ini-dist
diff -u php-src/php.ini-dist:1.215.2.10 php-src/php.ini-dist:1.215.2.11
--- php-src/php.ini-dist:1.215.2.10 Thu Apr 28 09:14:55 2005
+++ php-src/php.ini-dist Thu Apr 28 21:37:37 2005
@@ -394,6 +394,13 @@
; should turn it off for increased performance.
register_argc_argv = On
+; When enabled, the SERVER and ENV variables are created when they're first
+; used (Just In Time) instead of when the script starts. If these variables
+; are not used within a script, having this directive on will result in a
+; performance gain. The PHP directives register_globals, register_long_arrays,
+; and register_argc_argv must be disabled for this directive to have any
affect.
+auto_globals_jit = On
+
; Maximum size of POST data that PHP will accept.
post_max_size = 8M
http://cvs.php.net/diff.php/php-src/php.ini-recommended?r1=1.159.2.10&r2=1.159.2.11&ty=u
Index: php-src/php.ini-recommended
diff -u php-src/php.ini-recommended:1.159.2.10
php-src/php.ini-recommended:1.159.2.11
--- php-src/php.ini-recommended:1.159.2.10 Thu Apr 28 09:14:55 2005
+++ php-src/php.ini-recommended Thu Apr 28 21:37:37 2005
@@ -452,6 +452,13 @@
; should turn it off for increased performance.
register_argc_argv = Off
+; When enabled, the SERVER and ENV variables are created when they're first
+; used (Just In Time) instead of when the script starts. If these variables
+; are not used within a script, having this directive on will result in a
+; performance gain. The PHP directives register_globals, register_long_arrays,
+; and register_argc_argv must be disabled for this directive to have any
affect.
+auto_globals_jit = On
+
; Maximum size of POST data that PHP will accept.
post_max_size = 8M
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php