When I try to upload a file I get an error that says:
Warning: move_uploaded_file(/uploads/random.txt) [function.move-uploaded-file]: failed to open stream: No such file or directory in c:\program files\apache group\Apache\htdocs\upload.php on line 42
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\WINDOWS\TEMP\php1D.tmp' to '/uploads/random.txt' in c:\program files\apache group\Apache\htdocs\upload.php on line 42
I have file uploads turned on, but no matter how I do it I get this error.
This is the way I am sending the path to the function:
$upload = '/uploads/'.$_FILES['userfile']['name'];
any suggestions?