file1.php - This file gets $_FILES['foto'] and upload it to $Dir_Upload
$Dir_Upload = "httpdocs/upload/";
ini_set('post_max_size', '8M');
ini_set('upload_max_filesize', '8M');
....
if (isset($_FILES['foto']) AND ($_FILES['foto']['size'] != 0) ) {
$file_temporaneo = $_FILES['foto']['tmp_name'];
echo $file_temporaneo;
$nomefile1 = $_FILES['foto']['name'];
$estensione_file=estensione($nomefile1);
$nomefile1=uniqid(file_).".".$estensione_file;
if (move_uploaded_file($file_temporaneo, $Dir_Upload . $nomefile1)){
//echo "Il file รจ stato caricato";
} else {
//print_r(error_get_last());
echo '<pre>
Your file was not uploaded please try again
here are your debug informations:
'.print_r($_FILES) .'
</pre>';
//echo "ERROR";
}
}else {$nomefile1=NULL;}
files should be moved from /tmp directory to upload folder. but error occurs.
/tmp/phpyOFblKhttpdocs/upload/file_4e9c0dd6a9be7.jpg
Array ( [type] => 2 [message] => move_uploaded_file() [function.move-uploaded-file]: Unable to access httpdocs/upload/file_4e9c0dd6a9be7.jpg [file]
httpdocs/upload is set to 0777