ID: 10439
Updated by: andi
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: *Directory/Filesystem functions
PHP Version: 4.0.5
Assigned To:
Comments:
Do you happen to have an NT machine you can try and reproduce this on? I am on Windows
2000 and it works.
Previous Comments:
---------------------------------------------------------------------------
[2001-05-02 16:24:44] [EMAIL PROTECTED]
No, new version 4.0.5 didn't solve my problem, testesd under win98.
---------------------------------------------------------------------------
[2001-04-30 09:35:24] [EMAIL PROTECTED]
Works fine in latest CVS under NT.
Please try 4.0.5 which should be released today and report back if your problem has
been solved.
---------------------------------------------------------------------------
[2001-04-22 06:54:22] [EMAIL PROTECTED]
On w98 and w98se it is not possible to change from root directory (eg. c:) to a
relative subdirectory (e.g. windows). There is a delay of about 1 second. The same
when accessing file functions (eg. is_dir, filesize) on filenames in the root
directory without path (e.g. filesize ("msdos.sys"), no result is returned.
Try this script:
<?PHP
function mychdir ($text, $dir, $works) {
echo "$text '$dir': "; flush();
chdir ($dir);
echo
"<font color=". ($works ? "green" : "red").">".
str_replace ("\", "/", getcwd ())."</FONT><BR>";
flush ();
}
mychdir ("change to root", "/", true);
mychdir ("change to existing full path", "c:/windows/temp", true);
mychdir ("change to parent", "..", true);
mychdir ("change to relative subdir", "temp", true);
mychdir ("change to parent-parent", "../..", true);
mychdir ("change to root", "/", true);
mychdir ("change to relative subdir from root - does not work (notice the delay)",
"windows", false);
?>
Gustav Graf
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=10439&edit=2
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]