Solution:
Change the following line:
if(copy($HTTP_POST_FILES['userfile']['tmp_name'], $path)){
to the below line to exclude this error.
if(move_uploaded_file($_FILES['userfile']['tmp_name'], $path)){.
First of all,
i love this upload script it's great!
however im having problems with the installation
upload.php gives me the following error:
Warning: copy() [function.copy]: Unable to access in /storage/mijndomein/users/107373/public/sites/www.maffiaclub.com/upload/apps/standard/upload.php on line 62
it's refering to this code:
if(copy($HTTP_POST_FILES['userfile']['tmp_name']...