Hi
I'm trying to move a file using PHP..
I tried:
echo copy($_file,"/downloads/box/newwav.wav");
But that failed due to permissions.. I can't write into that folder as the web server user.
If I telnet in I can use:
cp filename.wav /downloads/box/newwav.wav
and that works.
So I tried:
$output = shell_exec("cp /filename.wav /downloads/box/newwav.wav");
echo $output;
This seems to complete without error.. but no file appears.
Can anyone help ??
Thanks