summaryrefslogtreecommitdiff
path: root/main/php_ini.c
Commit message (Collapse)AuthorAgeFilesLines
* Avoid defining/using S_ISDIR macro.Yasuo Ohgaki2002-04-191-5/+1
|
* Patch by Marcus Börger.Sebastian Bergmann2002-04-171-0/+4
|
* fix cli/cgi -c <path>|<file>Marcus Boerger2002-04-161-1/+6
| | | | | #hope this fixes it really (works for me)
* Fix cli/cgi -c optionYasuo Ohgaki2002-04-131-1/+1
| | | | | # I must be sleeping
* CGI/CLI take file and dir for -c option by this.Yasuo Ohgaki2002-04-121-2/+9
| | | | | @ Both 'file' and 'path to php.ini' is allowed for "-c" cli/cgi option. (Yasuo)
* Killing compiler warning on Win32Frank M. Kromann2002-03-051-0/+2
|
* Supply php_html_puts which escapes a whole string.. now fully works in ZTSSascha Schumann2002-03-041-2/+2
| | | | | mode, too.
* Removed CWD from php_ini_search_path when using CLI SAPI.Edin Kadribasic2002-02-281-3/+12
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Z_TYPE(filehandle)?? ok.. whatever... ;)Sterling Hughes2001-11-261-1/+1
|
* - Applied patch by Yasuo Ohgaki <yasuo_ohgaki@yahoo.com>Derick Rethans2001-11-011-1/+1
|
* - <br> -> <br />Derick Rethans2001-10-061-1/+1
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-10/+10
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* This is a list of char *'s, not zvals (caught by Nick - see bug #13107)Rasmus Lerdorf2001-09-031-1/+1
|
* Yet another TSRM fix.foobar2001-08-071-1/+1
|
* more tsrm cleanup -- output.c is not doing any fetches anymoreSascha Schumann2001-08-051-0/+1
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-9/+9
| | | | | - whitespace fixes
* Get rid of a couple of bogus persist_alloc()'s, and some cleanupZeev Suraski2001-08-031-2/+3
|
* More TSRMLS_FETCH annihilation. Enough for today...Zeev Suraski2001-07-311-1/+1
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-7/+7
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-1/+1
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-1/+1
| | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* Finish phpinfo() HTML 4.01 tweaking.Sebastian Bergmann2001-06-191-5/+5
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-16/+44
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* Fix bug: #10323. Every value outputted is now escaped.foobar2001-05-061-11/+18
|
* Fix build on WIn32Frank M. Kromann2001-04-231-0/+2
| | | | | Should the new directorys be static?
* * expanded the following constants and made them available in PHP:Stig Bakken2001-04-221-2/+10
| | | | | | | | | | | | | | | | DEFAULT_INCLUDE_PATH PEAR_INSTALL_DIR PHP_EXTENSION_DIR PHP_BINDIR PHP_LIBDIR PHP_DATADIR PHP_SYSCONFDIR PHP_LOCALSTATEDIR PHP_CONFIG_FILE_PATH * no longer generating pear/PEAR.php * fixed some tests * some more installer work
* - Get rid of warning.Andi Gutmans2001-04-211-2/+2
|
* Recode delayed loading in a much simpler way (switched back to php_ini.c 1.49)Zeev Suraski2001-03-171-64/+39
|
* Don't insert empty path if PHPRC is emptyStanislav Malyshev2001-03-061-1/+5
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Add safety checkStanislav Malyshev2001-02-211-1/+3
|
* # make sebastian and compiler happy .)Hartmut Holzgraefe2001-02-211-4/+6
|
* will now initialize dynamic extensions *after* static onesHartmut Holzgraefe2001-02-211-21/+49
|
* - Remove the ini_extension_list globalZeev Suraski2001-01-151-12/+28
| | | | | - Switch to delayed loading of Zend extensions
* Defer loading of extensions until all configuration entries have beenSascha Schumann2001-01-151-4/+21
| | | | | added to the configuration hash.
* Remove stale codeZeev Suraski2001-01-131-2/+1
|
* Many patches. I hope I remember them all:Zeev Suraski2001-01-021-75/+62
| | | | | | | | | - Make sapi_module available to external modules (PHPAPI) - Make the php.ini path reported in phpinfo() always point to real full path of the php.ini file - Optimized the ISAPI module not to read unnecessary server variables and read necessary variables at most once.
* - Make the INI mechanism thread safe (fix necessary API changes from Zend)Zeev Suraski2000-12-271-1/+2
| | | | | - Make the Win32 non-TS configuration build again
* - Fix phpinfo()Zeev Suraski2000-10-311-1/+1
| | | | | - Fix non-thread-safe build
* - Complete the move to the new INI parser. (Side effect: at last, peopleZeev Suraski2000-10-301-0/+218
| | | | | can finally have spaces and tabs in their extension statements...)
* Use the new INI parser for parse_ini_str()Zeev Suraski2000-10-291-6/+6
| | | | | - parse_ini_str() is now thread-safe, and supported under Windows (Zeev)
* Initial steps to move the INI mechanism to the Zend engineZeev Suraski2000-10-291-468/+17
|
* More security-related (control) patches:Zeev Suraski2000-09-091-1/+25
| | | | | | | - Avoid displaying errors during startup, unless display_startup_errors is enabled. - Implemented post_size_max limit. Defaults to 8MB. - Implemented file_uploads on/off directive (defaults to on).
* - Fix leakZeev Suraski2000-09-051-4/+0
| | | | | - Remove redundant php_ini code
* Cleaning up some messSascha Schumann2000-08-211-1/+1
|
* Disable the hash_apply() protection on hashes that persist across requests - ↵Zeev Suraski2000-07-111-1/+1
| | | | | | | | it's unsafe because we may be aborted at any point @- Fixed a possible data corruption in case of a huge amount of aborted requests (Zeev)
* - Make the INI entries sorted in phpinfo()Zeev Suraski2000-06-031-0/+26
|