Define in auto_prepend_file is overwrite
| Bug #71127 | Define in auto_prepend_file is overwrite | ||||
|---|---|---|---|---|---|
| Submitted: | 2015-12-15 14:23 UTC | Modified: | 2015-12-15 15:10 UTC | ||
| From: | g dot hue14 at gmail dot com | Assigned: | laruence (profile) | ||
| Status: | Closed | Package: | opcache | ||
| PHP Version: | 5.6 | OS: | Debian 8 | ||
| Private report: | No | CVE-ID: | None | ||
[2015-12-15 14:23 UTC] g dot hue14 at gmail dot com
Description:
------------
Tested with wordpress and apache 2.4 / php-fpm
Define('ABSPATH','mypath') in an auto_prepend_file
When wp-load.php do "define( 'ABSPATH', dirname(__FILE__) . '/' );", my personnal ABSPATH is overwrite with that new ABSPATH.
if i put "get_defined_constants();" in wp-load.php just before "define( 'ABSPATH', dirname(__FILE__) . '/' );", ABSPATH is not overwrite.
Tip:
if i put "get_defined_constants();" in the auto_prepend_file just after my first define, ABSPATH is overwrite when wp-load.php do the define function.
if i put "get_defined_constants();" in a file include between the auto_prend_file and wp-load.php (like index.php or wp-blog-header.php) ABSPATH is overwrite when wp-load.php do the define function.
Expected result:
----------------
Normally (in php 5.4, php 5.6), a file cannot redefine a constante defined in an auto_prepend_file.
Actual result:
--------------
Constantes defined in an auto_prepend_file can be redefined
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2015-12-15 15:00 UTC] laruence@php.net
-Package: *General Issues +Package: opcache -PHP Version: 7.0.0 +PHP Version: 5.6 -Assigned To: +Assigned To: laruence
[2023-08-26 16:26 UTC] taiwoemmanueltaiwo59 at yahoo dot com