sniper Thu Apr 28 21:37:19 2005 EDT Modified files: /php-src php.ini-dist php.ini-recommended Log: Add auto_globals_jit entry to php.ini-* (bug #29514) http://cvs.php.net/diff.php/php-src/php.ini-dist?r1=1.228&r2=1.229&ty=u Index: php-src/php.ini-dist diff -u php-src/php.ini-dist:1.228 php-src/php.ini-dist:1.229 --- php-src/php.ini-dist:1.228 Thu Apr 28 09:14:25 2005 +++ php-src/php.ini-dist Thu Apr 28 21:37:19 2005 @@ -398,6 +398,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.174&r2=1.175&ty=u Index: php-src/php.ini-recommended diff -u php-src/php.ini-recommended:1.174 php-src/php.ini-recommended:1.175 --- php-src/php.ini-recommended:1.174 Thu Apr 28 09:14:25 2005 +++ php-src/php.ini-recommended Thu Apr 28 21:37:19 2005 @@ -456,6 +456,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