ID: 27498
Updated by: [EMAIL PROTECTED]
Reported By: troels at kyberfabrikken dot dk
-Status: Bogus
+Status: Open
-Bug Type: Documentation problem
+Bug Type: Unknown/Other Function
Operating System: red hat linux
PHP Version: 4.3.4
New Comment:
This is definitely a bug.
[EMAIL PROTECTED]:~$ php -d'safe_mode=on' -r 'opendir("/home/et/nonexistant");'
Warning: opendir(): SAFE MODE Restriction in effect. The script whose
uid is 500 is not allowed to access /home/et owned by uid 0 in Command
line code on line 1
Warning: opendir(/home/et/nonexistant): failed to open dir: No such
file or directory in Command line code on line 1
[EMAIL PROTECTED]:~$ ls -dla /home/et
drwxr-xr-x 61 et et 4096 Mar 5 19:41 /home/et
Previous Comments:
------------------------------------------------------------------------
[2004-03-05 13:36:17] [EMAIL PROTECTED]
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php
.
------------------------------------------------------------------------
[2004-03-04 16:57:19] troels at kyberfabrikken dot dk
Description:
------------
while trying to open a dir that diddent exist, i recieved a wrong
error-message. this caused me to waste a lot of time, before i finally
figured out the real problem.
1. php is running as module under apache in safe mode. version = 4.3.3
2. /home/virtual/site1/fst/var/www/html/ is my www root
3. /home/virtual/site1/fst/var/www/html/data/ is a dir, end it's CHMOD
777
4. /home/virtual/site1/fst/var/www/html/data/subdir is non-existent
i recieve this error message :
Warning in line 3 of file
/home/virtual/site1/fst/var/www/html/index.php
[2] opendir(): SAFE MODE Restriction in effect. The script whose uid is
503 is not allowed to access
/home/virtual/site1/fst/var/www/html/data/subdir owned by uid 0
witch gave my a few hours messing around until i finally discovered
that i just forgot to create the dir in mention.
however - if php had given me a more precise error, i would have saved
a lot of time. when it comes down to it, safemode had nothing to do
with the real problem.
Reproduce code:
---------------
[index.php : begin]
<?php
$dir = "/home/virtual/site1/fst/var/www/html/data/subdir";
$handle = opendir($dir);
?>
[index.php : end]
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=27498&edit=1