From 09b6f37f20b239dd021c21a1756629c4a64dc2da Mon Sep 17 00:00:00 2001 From: Jani Taskinen Date: Fri, 28 Sep 2007 02:05:10 +0000 Subject: MFH: - Added ".htaccess" style user-defined php.ini files support for CGI/FastCGI. - Added support for special [PATH=/opt/httpd/www.example.com/] sections in php.ini. All directives set in these sections will not be able to be overridden in user-defined ini-files or during runtime in the specified path. - Improved php.ini handling: . Added better error reporting for syntax errors in php.ini files . Allowed "ini-variables" to be used almost everywhere ini php.ini files . Allowed using alphanumeric/variable indexes in "array" ini options . Fixed get_cfg_var() to be able to return "array" ini options - Fixed bug #27372 (parse error loading browscap.ini at apache startup) - Fixed bug #42069 (parse_ini_file() allows using some non-alpha numeric characters) --- main/php_globals.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'main/php_globals.h') diff --git a/main/php_globals.h b/main/php_globals.h index 6c796d2c76..889072bc11 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -161,6 +161,9 @@ struct _php_core_globals { #endif long max_input_nesting_level; zend_bool in_user_include; + + char *user_ini_filename; + long user_ini_cache_ttl; }; -- cgit v1.2.1