Hi Guys,
I have a problem, i've made a program that simply copy dirs and sub dirs from a local folder to a public folder on a server. Theese folders are both labeled by letters, because on the LAN, public folders are mapped on computer folders.
So i Have the c: (local drive), the d: (cdrom) e:(public lan folder)
I use a function that make copies which I found on php.net. At the row:
if(!@copy($path, $dest . '\\' . $file)){
echo '<font color="red">File ('.$path.') could not be copied to ('.$dest . '\\' . $file.'), likely a permissions problem.</font>';
script ends if I specify like destination path, a path on the public folder(E:). Everythings is gonna worked if I specify local path(C:)
How I can solve?