| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
* pull-request/341: (23 commits)
typofixes
|
| |
|
| |
|
|
|
|
|
| |
Use configured error_log file when stderr is not a tty.
So only use tty during interactive debug run.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
systemd_interval option to configure this. The service can now use
Type=notify in the systemd unit file.
Systemd status line will looks like:
Status: "Processes active: 0, idle: 5, Requests: 90, slow: 0, Traffic: 10req/sec"
Watchdog mode is also supported. In this case watchdog interval,
configured in the unit file, override the systemd_interval option.
When not used (default), no change from previous version.
|
|\
| |
| |
| |
| | |
* PHP-5.3:
From code coverity scan, syscall return value must be check.
|
| |
| |
| |
| |
| |
| |
| |
| | |
To not alter current behaviour, we simply log the problem,
so, if it occurs, the message will give explanation.
This are only warning as they don't block the server,
but such fail can explain strange (not expected) behaviour later.
|
|\ \
| |/
| |
| |
| | |
* PHP-5.3:
fix more resource leaks
|
| | |
|
|\ \
| |/
| |
| |
| | |
* PHP-5.3:
From code coverity scan - fix some memory leak - fix some resources leak (fd) - create fpm_worker_pool_free (shared use) - possible null dref (wp->user and wp->home can be null)
|
| |
| |
| |
| |
| |
| |
| | |
- fix some memory leak
- fix some resources leak (fd)
- create fpm_worker_pool_free (shared use)
- possible null dref (wp->user and wp->home can be null)
|
|\ \
| |/
| |
| |
| | |
* PHP-5.3:
fixed size array cannot be null
|
| | |
|
|\ \
| |/
| |
| |
| |
| | |
* PHP-5.3:
use limit_extensions as we use security_limit_extensions later (free)
unused variable
|
| | |
|
| | |
|
|\ \
| |/
| |
| |
| | |
* PHP-5.3:
fix possible null deref (detected by code coverity scan)
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
the SCRIPT_FILENAME may contains the QUERY_STRING.
Ex : RewriteRule ^(.*)\.php$ fcgi://127.0.0.1:9000/$1.php [P]
From apache debug (build with -DFCGI_DUMP_ENV_VARS)
AH01062: sending env var 'SCRIPT_FILENAME' value 'proxy:fcgi://127.0.0.1:9000/var/www/html/info.php?foo'
AH01071: Got error 'Primary script unknown\n'
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| |/ |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
and unsigned bits ops, etc.) causing crashes on start, error or log, must be done in win32/time.c for some of these functions too
Signed-off-by: Anatol Belski <ab@php.net>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Added descriptions for the new HTTP codes:
- 428 Precondition Required
- 429 Too Many Requests
- 431 Request Header Fields Too Large
- 511 Network Authentication Required
|
| |
| |
| |
| |
| |
| | |
fdset management using bit operator is broken on non-x86 arch
and cause built-in server the enter an infinite loop of "select"
and never handle any request.
|
|\ \
| |/
| |
| |
| | |
* PHP-5.3:
Update the arguments in the prototype of fpm_socket_unix_test_connect().
|
| |
| |
| |
| | |
Fixes bug #63999 (php with fpm fails to build on Solaris 10 or 11).
|
| | |
|
| |
| |
| |
| |
| | |
Fix compiling error at line 606 (error: format not a string
literal and no format arguments [-Werror=format-security]
|
| |
| |
| |
| |
| |
| |
| | |
return code should not be affected.
Without this fix, a webpage using eval() may return code 500. That might display
fine and the 500 go unnoticed, but using AJAX or wget, the 500 will cause problems.
|
| | |
|
| | |
|
| |
| |
| |
| | |
audio/video formats (Webm ,and Ogg containers) + have jpeg mime types listed together
|
|\ \
| |/
| |
| |
| |
| | |
* PHP-5.3:
Fixed Bug #63581 Possible buffer overflow
Fixed Bug #63581 Possible null dereference
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In fpm-log, possible buffer overflow. Check for length is done at
the beginning of the loop, so is not done when overflow occurs
on the last loop (len = 1024 or 1025). (ack from fat).
This issue where found from by static code analysis tool and, so,
I can't provide any reproducer.
|
| |
| |
| |
| |
| |
| |
| |
| | |
Possible NULL dereference when trying to delete the single item
of a list (ack from fat).
This issues where found from by static code analysis tool and,
so, I can't provide any reproducer.
|
| |
| |
| |
| | |
Third param in preg_match_all() is optional for a while )
|
|\ \
| |/
| |
| |
| |
| |
| |
| | |
* PHP-5.3:
Enabled apache 2.4 handler build option
Conflicts:
sapi/apache2handler/config.w32
|
| | |
|
| |
| |
| |
| | |
outdated html/css)
|
|\ \
| |/ |
|
| | |
|
|\ \
| |/
| |
| |
| | |
* PHP-5.3:
Fixed bug #62216
|
| |
| |
| |
| | |
Add PID to php-fpm init.d script
|