ID: 25043
Updated by: [EMAIL PROTECTED]
Reported By: duhaze at smcti dot com
-Status: Open
+Status: Bogus
Bug Type: PHP options/info functions
Operating System: Windows XP pro
PHP Version: 4.3.2
New Comment:
It's open_basedir you want, not doc_root.
Previous Comments:
------------------------------------------------------------------------
[2003-08-11 11:47:15] duhaze at smcti dot com
Description:
------------
Safe mode + doc_root does not work on windows XP Pro + Apache 2.0.47 +
php ( as module ) even if the safe_mode variable is "on" and the
"doc_root" variable is set.
Reproduce code:
---------------
$lines = file ('c:/windows/php.ini');
foreach ($lines as $line_num => $line)
echo "Line #<b>{$line_num}</b> : " . htmlspecialchars($line) .
"<br>\n";
$d = dir("e:"); //or $d = dir("c:\windows");
echo "Handle: ".$d->handle."<br>\n";
echo "Path: ".$d->path."<br>\n";
while (false !== ($entry = $d->read()))
echo $entry."<br>\n";
$d->close();
phpinfo();
Expected result:
----------------
not the "c:\windows\php.ini" file
nor the "e:\" directory
Actual result:
--------------
Always display all the lines of "c:\windows\php.ini" file and all the
items of the directory "e:\" even if the printinfo() procedure say that
:
safe_mode is "ON"
doc_root is "E:/_apache"
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=25043&edit=1