summaryrefslogtreecommitdiff
path: root/main/php_ini.c
Commit message (Collapse)AuthorAgeFilesLines
* MFH: Fixed bug #30050 (Possible crash inside php_shutdown_config()).Ilia Alshanetsky2004-09-171-0/+2
|
* - We always need to destroy the llist though.Derick Rethans2004-02-141-1/+1
|
* - Fixed zero bytes memory allocation when no extra ini files are found in theDerick Rethans2004-02-141-7/+9
| | | | | | --with-config-file-scan-dir specified directory. (patch by Eric Colinet <e.colinet@laposte.net>)
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Fix a problem resolving the php.ini path under win32 terminal services ↵Wez Furlong2003-12-061-0/+26
| | | | | | | environment. Remove config-file-path option from configure under win32; it is not used except to display what might have been chosen, so lets default to the getenv() thingy.
* Fixed unused variable warning on *nix.Ilia Alshanetsky2003-10-201-0/+2
|
* Enable setting php.ini path via the registryStanislav Malyshev2003-10-191-1/+16
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* fix phpinfo() & php -iMarcus Boerger2003-03-291-5/+5
|
* Fix PHPRC overriding other ini files. This is how PHPRC worked prior toShane Caraveo2003-03-221-8/+8
| | | | | | 4.3.x, and is usefull for applications that execute PHP and want to emulate CGI and define alternate INI files (ie. cannot use -c).
* give sapi modules the possibility to overwrite default ini settingsMarcus Boerger2003-03-181-0/+4
|
* MFB config-file-scan-dir crash fixRasmus Lerdorf2003-02-281-0/+1
|
* ws/style fixesfoobar2003-02-191-36/+40
|
* Fix the possible conflicts with other libs (like libc-client)foobar2003-02-191-5/+4
|
* Implement simple stream support in the ZE scanners.Wez Furlong2003-02-181-1/+1
|
* Fixed bug: #22011 (-n must ignore all ini files)foobar2003-02-031-1/+1
|
* Moved the scandir code into it's own files so that it can be used by otherIlia Alshanetsky2003-01-271-5/+3
| | | | | OSes where libc does not have a native scandir() implementation.
* Fix broken build by adding scandir and alphasort for win32Shane Caraveo2003-01-261-0/+6
|
* Fixed bug #21625 (When scanning a directory for ini files, do so inIlia Alshanetsky2003-01-251-9/+13
| | | | | | | | alphabetical order. This gives a user a way to control the order in which the ini files are loaded). Fixed a bug that would make the code try to read files without an extension as ini files.
* ini patch to allow 'entry[] = value' entriesHarald Radi2003-01-191-0/+28
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* - WhitespaceDerick Rethans2002-12-301-2/+4
|
* Implemented -n switch to skip parsing ini at startup as suggested by Wez.Marcus Boerger2002-11-121-24/+26
| | | | | | #The switch 'n' was planned to be used for beautifying....delete n to make #clear these functions do not have a switch yet.
* centralize #include "build-defs.h" and drop (sometimes inconsistent) otherSascha Schumann2002-10-241-3/+0
| | | | | instances
* As discussed, add --with-config-file-scan-dir compile-time switch definingRasmus Lerdorf2002-10-041-15/+69
| | | | | | | | | | a directory which will be scanned for *.ini files after the main php.ini file has been parsed. This makes it much easier to automatically deploy a modular PHP since adding extensions which have their own ini switches can now be done by simply dropping a foo.ini file in the right directory and restarting. A list of parsed ini files is maintained and shown on the phpinfo page.
* fix phpinfo() output for better browser BCColin Viebrock2002-09-261-3/+3
|
* Compat fixZeev Suraski2002-09-231-1/+1
|
* Change phpinfo() to use CSS styling instead of HTML code.Colin Viebrock2002-09-191-4/+4
| | | | | | | | | | It doesn't render as nicely as it used to on older browsers, but it does result in smaller files, and opens the door to using your own CSS to style it differently. There is a patch to Zend/zend_ini.c, but I don't have enough Karma, so Derick has the patch.
* NetWare related changes/modificationsAnantha Kesari H Y2002-09-091-1/+1
|
* - reenable "no value" output. thanks to sebastian for pointing that out.Jan Lehnardt2002-08-291-4/+14
|
* - add phpinfo() support for CLI.Jan Lehnardt2002-08-281-13/+21
| | | | | @phpinfo() support for CLI (jan)
* Minor cleanups to path building and php*.ini search logic.Preston L. Bannister2002-08-121-13/+32
| | | | | Made path_seperator string static (which solves the lookup problems Sebastian saw).
* First try to open php-SAPI.ini and if it fails fall back to regularEdin Kadribasic2002-07-291-1/+6
| | | | | | | php.ini file. For example cli version of PHP will first try to open php-cli.ini in the usual ini file search path and only if it fails will it try to open php.ini using the same path.
* get_cfg_var("get_file_path") didn't work correctly when an alternativeSander Roobol2002-05-191-6/+9
| | | | | php.ini _file_ was specified using -c
* reenable php_html_putsSascha Schumann2002-05-121-1/+1
|
* Use portable #defineZeev Suraski2002-05-111-5/+5
|
* Centralize html_puts() logic - php_html_puts() remains as an API wrapperZeev Suraski2002-05-111-1/+1
|
* Revert to the old php_ini.c, and reimplement the binary-path searching.Zeev Suraski2002-05-111-65/+105
| | | | | Should now also work under UNIX (CLI/CGI)
* ws fixfoobar2002-05-091-18/+18
|
* Detect when running under IIS and default force_redirect to zero. This This ↵Preston L. Bannister2002-05-091-18/+18
| | | | | | | means an explicit php.ini setting is no longer required. (NO extraneous whitespace changes this time (sigh)).
* Add check for php.ini in same directory as php.exe (or equivalent executable ↵Preston L. Bannister2002-05-091-71/+67
| | | | | | | | | that loaded php4ts.dll). Check is done before looking in the Windows directory. This allows distinct php.ini files when different applications using PHP are installed on the same system. Should be backwards compatible. Note that checking for in CWD php.ini may be a security risk(?), and can now be made compile-time configurable by removing a single #define. (This time with tabs for leading indent).
* Revert the last patches.foobar2002-05-091-231/+235
|
* Add check for php.ini in same directory as php.exe (or equivalent executable ↵Preston L. Bannister2002-05-091-235/+231
| | | | | | | | | that loaded php4ts.dll). Check is done before looks in the Windows directory. This allows distinct php.ini files when different applications using PHP are installed on the same system. Should be backwards compatible. Note that checking for php.ini in CWD may be a security risk(?), and can now be made compile-time configurable by removing a single #define.
* 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.