summaryrefslogtreecommitdiff
path: root/main/php_ini.c
Commit message (Collapse)AuthorAgeFilesLines
...
* - 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
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* Prettying up the output of phpinfo(). Someone has to tell me howColin Viebrock2000-04-051-6/+7
| | | | | | | | | to get a new .gif logo in there, and why the ZEND_DEBUG output is causing seg faults. I also need to go through all the modules and fix up the output they create.
* Allow the INI callbacks to know at what stage PHP isZeev Suraski2000-02-261-14/+14
|
* started implementing directives for default mimetype/charsetStig Bakken2000-02-241-0/+7
|
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* Fix PostgreSQL startup routine in thread-safe modeZeev Suraski2000-02-051-0/+22
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - Should fix short_tags and co. problem.Andi Gutmans1999-09-051-0/+18
|
* - Add PHP Modules workspaceZeev Suraski1999-08-131-0/+15
| | | | | | - Get the MySQL module to compile&work under thread-safe Win32 - Fix various thread safety issues with dynamic modules
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-1/+1
| | | | | php3_compat.h)
* License updateZeev Suraski1999-07-161-20/+9
|
* - Add a bitwise flag to phpinfo()Andi Gutmans1999-07-141-2/+2
| | | | | - Import a draft of the new PHP license
* Implement new get_ini_entry() for ZendZeev Suraski1999-06-191-11/+22
|
* * Add a new workspace for dynamic PHP extensions.Zeev Suraski1999-06-041-4/+4
| | | | | | | * Add a few functions to PHP's API. * Get the MySQL extension up-to-date and thread safe. * Add a project for building the MySQL extension under Win32.
* kill some warningsSascha Schumann1999-05-301-1/+1
|
* More fixes. Should hopefully work well now.Zeev Suraski1999-05-221-15/+18
|
* php_ini fixesZeev Suraski1999-05-221-3/+4
|
* Fix a memory leakZeev Suraski1999-05-211-0/+1
|
* * Move unclean_shutdown from PHP to Zend.Zeev Suraski1999-05-111-1/+1
| | | | | | * The Master/Local headers in the phpinfo() table were reversed. * Fix a gpc bug
* beatify Apache's info funcZeev Suraski1999-05-111-6/+3
|
* * Finalizing the PHP version of SAPI. Support POST and cookies among other ↵Zeev Suraski1999-05-091-8/+120
| | | | | | | | | | | | | things. * Fully implement ISAPI support - POST and cookies among other things. * Almost completely rewrote phpinfo(). Allow modules to easily display their information in phpinfo() without modifying phpinfo() itself (prototype for the module info function was changed, thus the large amount of updated module files). * Initial extended SAPI support for Apache, completely untested. * CGI now uses SAPI fully as well.
* Additional generalization of the INI mechanism. Avoid needing specializedZeev Suraski1999-04-281-12/+8
| | | | | message handlers in 99% of the cases.
* A step towards generalizing the INI mechanism even moreZeev Suraski1999-04-281-8/+8
|
* Thread safety patch. It works now with just-in-time resource initialization!Zeev Suraski1999-04-211-0/+3
|
* NULL's should remain NULLs (at least in strings)Zeev Suraski1999-04-121-1/+1
|
* tolerate uninitialized ini settings in php_ini_{long,double,string}()Stig Bakken1999-04-121-5/+5
|
* Buh-bye php3_iniZeev Suraski1999-04-101-0/+23
|
* * php_ini fixesZeev Suraski1999-04-101-2/+7
| | | | | * convert the MySQL module to use the new php_ini mechanism
* Apache php_ini supportZeev Suraski1999-04-091-0/+6
|