Hi,
I have a very simple script in PHP thats supposed to rename a file on server but all I get is:
Warning: rename(tester.txt,tester1.txt): Permission denied in tester2.php on line 5
The file I am renaming has been CHMOD to 777 so it should work.
What am I doing wrong?
Code using is:
<?
Echo "John Cabral";
rename( "tester.txt","tester1.txt" );
?>
Any help woudl be super.
John