1<?php rename ("/folder/file.ext", "newfile.ext"); ?>
2
3The above doesn't rename the file within the folder, as you might assume,
4instead, it moves the file to whatever the PHP working directory is...
5Chances are you'll not find it in your FTP tree.
6Instead, use the following:
7
8<?php rename ("/folder/file.ext", "/folder/newfile.ext"); ?>