ID:               34842
 Comment by:       pault at briandunn dot com dot au
 Reported By:      marcel at hjortronet dot se
 Status:           Feedback
 Bug Type:         Filesystem function related
 Operating System: Windows Server 2003
 PHP Version:      5CVS-2005-10-12 (snap)
 New Comment:

We recently moved from a linux server to a windows server and I beleive
we may have come across this same problem.

// This code will result in the error.
$curPath = getcwd();  // Save current path.
chdir( $curPath );  // Restore path.

// Even this code will produce the error.
chdir( getcwd() );  

Warning: chdir() [function.chdir]: No such file or directory (errno 2)
in...


Previous Comments:
------------------------------------------------------------------------

[2005-11-02 14:13:52] [EMAIL PROTECTED]

Does it work if you do just chdir(".."); ??

------------------------------------------------------------------------

[2005-10-17 22:27:49] marcel at hjortronet dot se

more info on the apache test:

Actual Apache result @ the web client when no permission, for the user
running the apache service, allowed to
"D:\TEMP\apache-php-test\wwwroot\" but to
"D:\TEMP\apache-php-test\wwwroot\a\" (the actual VirtualHost directory
being published) and running the script* from within
"D:\TEMP\apache-php-test\wwwroot\a\sub\":

"D:\TEMP\apache-php-test\wwwroot\a\sub
Warning: chdir() [function.chdir]: No such file or directory (errno 2)
in D:\TEMP\apache-php-test\wwwroot\a\sub\index.php on line 3
D:\TEMP\apache-php-test\wwwroot\a\sub"

When allowing for access to "D:\TEMP\apache-php-test\wwwroot\" (outside
the actual web) the result becomes:

"D:\TEMP\apache-php-test\wwwroot\a\sub
1
D:\TEMP\apache-php-test\wwwroot\a"

* Script:

"<?
  echo getcwd()."<br/>\n";
  echo chdir("../")."<br/>\n";
  echo getcwd()."<br/>\n";
?>"

Sincerely // Marcel

------------------------------------------------------------------------

[2005-10-17 22:18:13] marcel at hjortronet dot se

Yes, the results are exactly the same using Apache HTTPd v2.0.55
(Win32) and PHP (php5.1-win32-200510171430). I've just verified the
test/results myself.

Sincerely // Marcel

------------------------------------------------------------------------

[2005-10-12 23:36:40] [EMAIL PROTECTED]

Are you able to reproduce it with Apache ?

------------------------------------------------------------------------

[2005-10-12 23:22:27] marcel at hjortronet dot se

Description:
------------
Consider this example web server:
'D:\wwwroot\myweb\' (published as http://www.myweb.com/)

IF the web servers access (or actually the 'IUSR_<computername>' user
which enables IIS anonymous web access) is restricted to
'D:\wwwroot\myweb\' directory (and its subdirectories) and is not
allowed to access any other local directory, like for example
'D:\wwwroot\', the code below ('chdir("../")') won't function if it is
put into 'D:\wwwroot\myweb\test\' (published as
http://www.myweb.com/test/reproducecode.php).

Otherwise, thanks for doing a wonderful job! //Marcel, Sweden

Reproduce code:
---------------
<?
  echo getcwd()."<br/>\n";
  echo chdir("../")."<br/>\n";
  echo getcwd()."<br/>\n";
?>

Expected result:
----------------
D:\wwwroot\myforum\test
1
D:\wwwroot\myforum

Actual result:
--------------
D:\wwwroot\myforum\test

D:\wwwroot\myforum\test


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=34842&edit=1

Reply via email to