Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create branch 'PHP_5'.PHP-5 | SVN Migration | 2003-02-27 | 1 | -580/+0 |
| | |||||
* | ws/style fixes | foobar | 2003-02-19 | 1 | -36/+40 |
| | |||||
* | Fix the possible conflicts with other libs (like libc-client) | foobar | 2003-02-19 | 1 | -5/+4 |
| | |||||
* | Implement simple stream support in the ZE scanners. | Wez Furlong | 2003-02-18 | 1 | -1/+1 |
| | |||||
* | Fixed bug: #22011 (-n must ignore all ini files) | foobar | 2003-02-03 | 1 | -1/+1 |
| | |||||
* | Moved the scandir code into it's own files so that it can be used by other | Ilia Alshanetsky | 2003-01-27 | 1 | -5/+3 |
| | | | | | OSes where libc does not have a native scandir() implementation. | ||||
* | Fix broken build by adding scandir and alphasort for win32 | Shane Caraveo | 2003-01-26 | 1 | -0/+6 |
| | |||||
* | Fixed bug #21625 (When scanning a directory for ini files, do so in | Ilia Alshanetsky | 2003-01-25 | 1 | -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' entries | Harald Radi | 2003-01-19 | 1 | -0/+28 |
| | |||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | - Whitespace | Derick Rethans | 2002-12-30 | 1 | -2/+4 |
| | |||||
* | Implemented -n switch to skip parsing ini at startup as suggested by Wez. | Marcus Boerger | 2002-11-12 | 1 | -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) other | Sascha Schumann | 2002-10-24 | 1 | -3/+0 |
| | | | | | instances | ||||
* | As discussed, add --with-config-file-scan-dir compile-time switch defining | Rasmus Lerdorf | 2002-10-04 | 1 | -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 BC | Colin Viebrock | 2002-09-26 | 1 | -3/+3 |
| | |||||
* | Compat fix | Zeev Suraski | 2002-09-23 | 1 | -1/+1 |
| | |||||
* | Change phpinfo() to use CSS styling instead of HTML code. | Colin Viebrock | 2002-09-19 | 1 | -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/modifications | Anantha Kesari H Y | 2002-09-09 | 1 | -1/+1 |
| | |||||
* | - reenable "no value" output. thanks to sebastian for pointing that out. | Jan Lehnardt | 2002-08-29 | 1 | -4/+14 |
| | |||||
* | - add phpinfo() support for CLI. | Jan Lehnardt | 2002-08-28 | 1 | -13/+21 |
| | | | | | @phpinfo() support for CLI (jan) | ||||
* | Minor cleanups to path building and php*.ini search logic. | Preston L. Bannister | 2002-08-12 | 1 | -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 regular | Edin Kadribasic | 2002-07-29 | 1 | -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 alternative | Sander Roobol | 2002-05-19 | 1 | -6/+9 |
| | | | | | php.ini _file_ was specified using -c | ||||
* | reenable php_html_puts | Sascha Schumann | 2002-05-12 | 1 | -1/+1 |
| | |||||
* | Use portable #define | Zeev Suraski | 2002-05-11 | 1 | -5/+5 |
| | |||||
* | Centralize html_puts() logic - php_html_puts() remains as an API wrapper | Zeev Suraski | 2002-05-11 | 1 | -1/+1 |
| | |||||
* | Revert to the old php_ini.c, and reimplement the binary-path searching. | Zeev Suraski | 2002-05-11 | 1 | -65/+105 |
| | | | | | Should now also work under UNIX (CLI/CGI) | ||||
* | ws fix | foobar | 2002-05-09 | 1 | -18/+18 |
| | |||||
* | Detect when running under IIS and default force_redirect to zero. This This ↵ | Preston L. Bannister | 2002-05-09 | 1 | -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. Bannister | 2002-05-09 | 1 | -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. | foobar | 2002-05-09 | 1 | -231/+235 |
| | |||||
* | Add check for php.ini in same directory as php.exe (or equivalent executable ↵ | Preston L. Bannister | 2002-05-09 | 1 | -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 Ohgaki | 2002-04-19 | 1 | -5/+1 |
| | |||||
* | Patch by Marcus Börger. | Sebastian Bergmann | 2002-04-17 | 1 | -0/+4 |
| | |||||
* | fix cli/cgi -c <path>|<file> | Marcus Boerger | 2002-04-16 | 1 | -1/+6 |
| | | | | | #hope this fixes it really (works for me) | ||||
* | Fix cli/cgi -c option | Yasuo Ohgaki | 2002-04-13 | 1 | -1/+1 |
| | | | | | # I must be sleeping | ||||
* | CGI/CLI take file and dir for -c option by this. | Yasuo Ohgaki | 2002-04-12 | 1 | -2/+9 |
| | | | | | @ Both 'file' and 'path to php.ini' is allowed for "-c" cli/cgi option. (Yasuo) | ||||
* | Killing compiler warning on Win32 | Frank M. Kromann | 2002-03-05 | 1 | -0/+2 |
| | |||||
* | Supply php_html_puts which escapes a whole string.. now fully works in ZTS | Sascha Schumann | 2002-03-04 | 1 | -2/+2 |
| | | | | | mode, too. | ||||
* | Removed CWD from php_ini_search_path when using CLI SAPI. | Edin Kadribasic | 2002-02-28 | 1 | -3/+12 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | Z_TYPE(filehandle)?? ok.. whatever... ;) | Sterling Hughes | 2001-11-26 | 1 | -1/+1 |
| | |||||
* | - Applied patch by Yasuo Ohgaki <yasuo_ohgaki@yahoo.com> | Derick Rethans | 2001-11-01 | 1 | -1/+1 |
| | |||||
* | - <br> -> <br /> | Derick Rethans | 2001-10-06 | 1 | -1/+1 |
| | |||||
* | Back-substitute for Z_* macro's. If it breaks some extension (the script ↵ | Jeroen van Wolffelaar | 2001-09-25 | 1 | -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 Rethans | 2001-09-09 | 1 | -2/+2 |
| | |||||
* | This is a list of char *'s, not zvals (caught by Nick - see bug #13107) | Rasmus Lerdorf | 2001-09-03 | 1 | -1/+1 |
| | |||||
* | Yet another TSRM fix. | foobar | 2001-08-07 | 1 | -1/+1 |
| | |||||
* | more tsrm cleanup -- output.c is not doing any fetches anymore | Sascha Schumann | 2001-08-05 | 1 | -0/+1 |
| | |||||
* | - TSRMLS_FETCH work | Zeev Suraski | 2001-08-05 | 1 | -9/+9 |
| | | | | | - whitespace fixes |