Afternoon,
I have a simple file upload I've been using as a test:
$webServer="../PHP/";
# Check whether file is uploaded successfully
if($img1_name!=""){
@copy("$img1","$webServer$img1_name") or die("Couldn't copy the file");
}
else{
die("No input file specified!$img1_name");
}
If I use this it takes forever and the file never gets moved. When I create a share to the webserver and copy the file it's instantaneous. Can anybody point me in the right direction to troubleshoot this?
Thanks
Laura