summaryrefslogtreecommitdiff
path: root/main/php_ini.c
Commit message (Collapse)AuthorAgeFilesLines
...
* - fix possible leak and error while fetching PHPRCPierre Joye2010-08-301-2/+24
|
* fix bug #51276 (php_load_extension() is missing when HAVE_LIBDL is undefined)Antony Dovgal2010-06-081-0/+2
|
* Removed safe_modeKalle Sommer Nielsen2010-04-261-4/+0
| | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore
* - Fixed bug #48811 (Directives in PATH section do not get applied to ↵Jani Taskinen2010-01-161-1/+1
| | | | subdirectories)
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - #48779, fix another use case where / usage may differPierre Joye2009-10-151-1/+9
|
* - #48779, improve fix, drop usage of _tolower and use zend_strtolowerPierre Joye2009-10-121-1/+1
|
* - fix possible issue in TS environment (we don't have to do that anymore ↵Pierre Joye2009-10-111-24/+9
| | | | anyway in 5.3+)
* - #48779, don't loop twice over the path charsPierre Joye2009-10-111-8/+6
|
* - Fixed build and comment-styleFelipe Pena2009-10-091-2/+2
|
* - changed ini file directives [PATH=](on Win32) and [HOST=](on all) to be ↵Garrett Serack2009-10-091-0/+21
| | | | case insensitive (garretts)
* - MFH: Get rid of the four different versions of zend_extension* and only useDerick Rethans2009-05-181-13/+1
| | | | | | | zend_extension. Because of the API identifier change in PHP 5.3 you also get a proper warning message now. #- [DOC]
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH Do not show empty ini directive tables for modules without ini entries.Marcus Boerger2008-12-301-5/+22
|
* - move declaration on top and fix build errorPierre Joye2008-08-131-1/+2
|
* MFHJani Taskinen2008-08-131-9/+35
|
* - MFH: Constness (Added const qualifier to several function parameters)Felipe Pena2008-08-121-6/+6
|
* Optimized request startup sequence for php.ini without per dir and per host ↵Dmitry Stogov2008-04-151-2/+23
| | | | configurations
* - MFH Rename dump_config_hash() to get_config_hash() as it doesn't dumpMarcus Boerger2008-02-031-6/+3
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: No zval is stored hereJani Taskinen2007-11-261-1/+1
|
* MFH:- Added support for [HOST=www.example.com] special sectionsJani Taskinen2007-11-091-23/+34
| | | | | MFH:- Allowed using full path to load modules using "extension" directive
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-2/+2
|
* MFH: Fixed win32 build.Jani Taskinen2007-09-281-1/+1
|
* MFH:Jani Taskinen2007-09-281-61/+239
| | | | | | | | | | | | | | | | | | | | - 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)
* MFH: ws fixesJani Taskinen2007-08-311-20/+20
|
* MFHJani Taskinen2007-08-311-3/+3
|
* MFHAntony Dovgal2007-05-191-1/+1
|
* MFHAntony Dovgal2007-05-141-3/+3
|
* MFH: bug#41361 (shell_exec() does not find binaries)Hannes Magnusson2007-05-121-2/+5
|
* use php_strtok_r() rather than strsep()Hannes Magnusson2007-05-101-1/+4
| | | | | # Fixes build on, for instance, solaris
* MFH: Fixed PHP CLI to use the php.ini from the binary locationHannes Magnusson2007-05-061-1/+20
|
* WIN64 supportDmitry Stogov2007-04-161-2/+2
|
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-2/+2
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFHAntony Dovgal2006-12-281-17/+19
|
* MFH: Fixed mess with CGI/CLI -d command line option (now it works with cgi; ↵Dmitry Stogov2006-09-191-0/+5
| | | | constants are working exactly like in php.ini; with FastCGI -d affects all requests).
* Search for php.ini in CWD in all sapi's *but* CLI.Edin Kadribasic2006-09-051-2/+2
| | | | | | | | | This patch reverses wrong behavaiour introduced before the release of 5.1.0. # We should probably consider killing adding CWD php.ini lookup # altogether.
* In addtion to path to php.ini, PHPRC now may specify full file nameDmitry Stogov2006-08-031-4/+9
|
* Changed priority of PHPRC environment variable on win32 to be higher then ↵Dmitry Stogov2006-07-041-8/+8
| | | | value from registry.
* bump year and license versionfoobar2006-01-011-3/+3
|
* Revertfoobar2005-09-021-8/+4
|
* it is good idea to return something alwaysfoobar2005-09-021-3/+1
|
* MFH: - Fixed bug #34307 (OnUpdateStringUnempty INI options can be set empty)foobar2005-09-011-16/+21
|
* - Fixed problem with -dextension=foobar.so not having it's MINIT run.foobar2005-08-081-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - Fixed few logic errors in php*.ini search path creation as documented here:foobar2005-07-291-19/+17
| | | | | | | | | | | | | | | | | | | | | http://fi.php.net/manual/en/configuration.php#configuration.file # # Before this patch: # # $ strace php -r 'echo 1;' 2>&1 | grep php.ini # open("/www/php/lib/php.ini", O_RDONLY) = 3 # lstat64("/www/php/lib/php.ini", {st_mode=S_IFREG|0640, st_size=46264, ...}) = 0 # # With this patch: # # $ strace php -r 'echo 1;' 2>&1 | grep php.ini # open("./php.ini", O_RDONLY) = -1 ENOENT (No such file or directory) # open("/usr/src/php5_1_full/sapi/cli/php.ini", O_RDONLY) = -1 ENOENT (No such file or directory) # open("/www/php/lib/php.ini", O_RDONLY) = 3 # lstat64("/www/php/lib/php.ini", {st_mode=S_IFREG|0640, st_size=46264, ...}) = 0 #
* ws fixAntony Dovgal2005-07-271-1/+1
|
* edge case: do not remove trailing slash for root directory (Bug #33882)Hartmut Holzgraefe2005-07-271-1/+1
|
* php.ini search logic needs to use the absolute path of the running binaryHartmut Holzgraefe2005-07-271-2/+6
| | | | | when looking for php.ini in the directory the php binary is installed in