I'm running an upload script which requires the code below:
$copy = copy($_FILES['$theFile']['tmp_name'], $filename);
an error message appears:
Warning: Unable to open '' for reading: Permission denied in c...
I'm running Apache on a Windows machine. How do I do CHMOD on my system? Or set folder permissions?
Any solution?