Forum Moderators: coopster
I've searched for a while now and can't determine if it's a windows permission problem or something else.
Just to isolate the problem I tried this script:
<?php
$source = "./test.txt";
$destination = "./copy.txt";
if (rename($source, $destination)) {
echo "The file was moved successfully.", "\n";
} else {
echo "The specified file could not be moved. Please try again.", "\n";
}
?>
It fails too..
Any ideas?
Thanks very much!
Vertronics