Gaz
11-11-2000, 03:43 AM
I have attempted to use the following code to get a directory listing.
$d = dir("/big/dom/xmobiusware/mobius/www/{removethis}/orig/bullock/let/");
echo "Handle: ".$d->handle."
\n";
echo "Path: ".$d->path."
\n";
while($entry=$d->read()) {
[nbsp][nbsp][nbsp][nbsp]echo $entry."
\n";
}
$d->close();
However I get the error:
Warning: OpenDir: Permission denied (errno 13) in /big/dom/xmobiusware/{path}/movefile.php on line 21
I have chmod 777 the entire directory and the directory entry. What am I missing?
Thanks,
Gareth
$d = dir("/big/dom/xmobiusware/mobius/www/{removethis}/orig/bullock/let/");
echo "Handle: ".$d->handle."
\n";
echo "Path: ".$d->path."
\n";
while($entry=$d->read()) {
[nbsp][nbsp][nbsp][nbsp]echo $entry."
\n";
}
$d->close();
However I get the error:
Warning: OpenDir: Permission denied (errno 13) in /big/dom/xmobiusware/{path}/movefile.php on line 21
I have chmod 777 the entire directory and the directory entry. What am I missing?
Thanks,
Gareth