mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.5'
* PHP-8.5: Add missing NEWS entry for FPM GH-19817 fix Fix GH-19817: Decode SCRIPT_FILENAME issue in php 8.5 (#20114)
This commit is contained in:
@@ -807,10 +807,10 @@ enable_dl = Off
|
||||
;fastcgi.impersonate = 1
|
||||
|
||||
; Prevent decoding of SCRIPT_FILENAME when using Apache ProxyPass or
|
||||
; ProxyPassMatch. This should only be used if script file paths are already
|
||||
; stored in an encoded format on the file system.
|
||||
; Default is 0.
|
||||
;fastcgi.script_path_encoded = 1
|
||||
; ProxyPassMatch. This should be used if script file paths are not stored
|
||||
; in an encoded format on the file system.
|
||||
; Default is 1.
|
||||
;fastcgi.script_path_encoded = 0
|
||||
|
||||
; Disable logging through FastCGI connection. PHP's default behavior is to enable
|
||||
; this feature.
|
||||
|
||||
@@ -809,10 +809,10 @@ enable_dl = Off
|
||||
;fastcgi.impersonate = 1
|
||||
|
||||
; Prevent decoding of SCRIPT_FILENAME when using Apache ProxyPass or
|
||||
; ProxyPassMatch. This should only be used if script file paths are already
|
||||
; stored in an encoded format on the file system.
|
||||
; Default is 0.
|
||||
;fastcgi.script_path_encoded = 1
|
||||
; ProxyPassMatch. This should be used if script file paths are not stored
|
||||
; in an encoded format on the file system.
|
||||
; Default is 1.
|
||||
;fastcgi.script_path_encoded = 0
|
||||
|
||||
; Disable logging through FastCGI connection. PHP's default behavior is to enable
|
||||
; this feature.
|
||||
|
||||
@@ -1435,7 +1435,7 @@ PHP_INI_BEGIN()
|
||||
STD_PHP_INI_BOOLEAN("cgi.nph", "0", PHP_INI_ALL, OnUpdateBool, nph, php_cgi_globals_struct, php_cgi_globals)
|
||||
STD_PHP_INI_BOOLEAN("cgi.fix_pathinfo", "1", PHP_INI_SYSTEM, OnUpdateBool, fix_pathinfo, php_cgi_globals_struct, php_cgi_globals)
|
||||
STD_PHP_INI_BOOLEAN("cgi.discard_path", "0", PHP_INI_SYSTEM, OnUpdateBool, discard_path, php_cgi_globals_struct, php_cgi_globals)
|
||||
STD_PHP_INI_BOOLEAN("fastcgi.script_path_encoded", "0", PHP_INI_SYSTEM, OnUpdateBool, fcgi_script_path_encoded, php_cgi_globals_struct, php_cgi_globals)
|
||||
STD_PHP_INI_BOOLEAN("fastcgi.script_path_encoded", "1", PHP_INI_SYSTEM, OnUpdateBool, fcgi_script_path_encoded, php_cgi_globals_struct, php_cgi_globals)
|
||||
STD_PHP_INI_BOOLEAN("fastcgi.logging", "1", PHP_INI_SYSTEM, OnUpdateBool, fcgi_logging, php_cgi_globals_struct, php_cgi_globals)
|
||||
STD_PHP_INI_ENTRY("fastcgi.error_header", NULL, PHP_INI_SYSTEM, OnUpdateString, error_header, php_cgi_globals_struct, php_cgi_globals)
|
||||
STD_PHP_INI_ENTRY("fpm.config", NULL, PHP_INI_SYSTEM, OnUpdateString, fpm_config, php_cgi_globals_struct, php_cgi_globals)
|
||||
@@ -1448,7 +1448,7 @@ static void php_cgi_globals_ctor(php_cgi_globals_struct *php_cgi_globals)
|
||||
php_cgi_globals->nph = 0;
|
||||
php_cgi_globals->fix_pathinfo = 1;
|
||||
php_cgi_globals->discard_path = 0;
|
||||
php_cgi_globals->fcgi_script_path_encoded = 0;
|
||||
php_cgi_globals->fcgi_script_path_encoded = 1;
|
||||
php_cgi_globals->fcgi_logging = 1;
|
||||
php_cgi_globals->fcgi_logging_request_started = false;
|
||||
zend_hash_init(&php_cgi_globals->user_config_cache, 0, NULL, user_config_cache_entry_dtor, 1);
|
||||
|
||||
@@ -18,6 +18,7 @@ pm.start_servers = 1
|
||||
pm.min_spare_servers = 1
|
||||
pm.max_spare_servers = 3
|
||||
php_admin_value[cgi.fix_pathinfo] = yes
|
||||
php_admin_value[fastcgi.script_path_encoded] = no
|
||||
EOT;
|
||||
|
||||
$code = <<<EOT
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
--TEST--
|
||||
FPM: FastCGI change for Apache ProxyPass SCRIPT_FILENAME decoding - fallback (GH-17645)
|
||||
FPM: FastCGI change for Apache ProxyPass SCRIPT_FILENAME decoding - default (GH-17645)
|
||||
--SKIPIF--
|
||||
<?php include "skipif.inc"; ?>
|
||||
--FILE--
|
||||
@@ -18,7 +18,6 @@ pm.start_servers = 1
|
||||
pm.min_spare_servers = 1
|
||||
pm.max_spare_servers = 3
|
||||
php_admin_value[cgi.fix_pathinfo] = yes
|
||||
php_admin_value[fastcgi.script_path_encoded] = yes
|
||||
EOT;
|
||||
|
||||
$code = <<<EOT
|
||||
|
||||
Reference in New Issue
Block a user