I'm not getting any errors, but I'm not getting the file copied either:
$upload_folder = "uploads/";
$name_of_uploaded_file = basename($_FILES['uploaded_file']['name']);
$prefix = date("YmdHis");
$path_of_uploaded_file = "$upload_folder$prefix-$name_of_uploaded_file";
$tmp_path = $_FILES["uploaded_file"]["tmp_name"];
if(is_uploaded_file($tmp_path))
{
if(!copy($tmp_path,$path_of_uploaded_file))
{
$errors .= '\n error while copying the uploaded file';
}
}
echo $path_of_uploaded_file;
echo $name_of_uploaded_file;
echo $errors;
This worked fine on a Windows development environment, but deploying to a Linux web server is doing this. We were getting a copying error initially, then we added permissions to the uploads directory. Now we get nothing.
I've also tried this with move_uploaded_file, no errors, but no resulting file in the uploads directory.
MAX_FILE_SIZEinput in your form? You probably do, so try setting the value to0(zero). – Evan Mulawski Aug 22 '11 at 18:57move_uploaded_file()instead ofcopy(). Maybe that helps. Additionally, you should enable error reporting, for debugging:ini_set('display_errors', 1); error_reporting(~0);on top of the upload-script file. You should see warnings if files can not be moved then. – hakre Aug 22 '11 at 19:41