Reputation: 11751
I am uploading multiple files using while loop, following is my code, move_uploaded_file always fails and I get message "error uploading File!". I am using the same code(code inside while loop without $counter) to upload single file in other use case, which works well, but when I use the same code in while loop where I think the code looks fine, but fails at move_uploaded_file
...please suggest me whats the problem and how can I resolve this?
$counter = 0;
while ($_FILES) {
if (!isset($_FILES['album_pics'])) {
//required variables are empty
die("File is empty!");
}
if ($_FILES['album_pics']['error'][$counter]) {
//File upload error encountered
die(upload_errors($_FILES['album_pics']['error'][$counter]));
}
$FileName = strtolower($_FILES['album_pics']['name'][$counter]); //uploaded file name
$ImageExt = substr($FileName, strrpos($FileName, '.')); //file extension
$FileType = $_FILES['album_pics']['type'][$counter]; //file type
$FileSize = $_FILES['album_pics']["size"][$counter]; //file size
$RandNumber = rand(0, 9999999999); //Random number to make each filename unique.
$uploaded_date = date("Y-m-d H:i:s");
$FileTitle = current(explode('.', $FileName));
switch (strtolower($FileType)) {
case 'image/png':
case 'image/gif':
case 'image/jpeg':
case 'application/pdf':
case 'application/msword':
case 'application/vnd.ms-excel':
case 'application/x-zip-compressed':
case 'text/plain':
case 'text/html':
break;
default:
die('Unsupported File!'); //output error
}
//File Title will be used as new File name
$NewFileName = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), strtolower(substr($FileTitle, 0, 10)));
$NewFileName = $NewFileName.'_'.$RandNumber.$ImageExt;
$UploadDirectory = 'ajax/';
if (move_uploaded_file($_FILES['album_pics']['tmp_name'][$counter], $UploadDirectory.$NewFileName)) {
// here I will insert image metadata to database with the new image name
$counter = (if result is true) ? $counter + 1 : $counter;// increase counter if insert returns true
} else {
die('error uploading File!');
}
function upload_errors($err_code) {
switch ($err_code) {
case UPLOAD_ERR_INI_SIZE:
return 'The uploaded file exceeds the upload_max_filesize directive in php.ini'.ini_get("upload_max_filesize");
case UPLOAD_ERR_FORM_SIZE:
return 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form';
case UPLOAD_ERR_PARTIAL:
return 'The uploaded file was only partially uploaded';
case UPLOAD_ERR_NO_FILE:
return 'No file was uploaded';
case UPLOAD_ERR_NO_TMP_DIR:
return 'Missing a temporary folder';
case UPLOAD_ERR_CANT_WRITE:
return 'Failed to write file to disk';
case UPLOAD_ERR_EXTENSION:
return 'File upload stopped by extension';
default:
return 'Unknown upload error';
}
} //function upload_erros() close
} //while loop close
Upvotes: 0
Views: 3108
Reputation: 11751
I have found the answer and I am posting this so that anybody who want the solution to multiple file upload can refer to this
Instead of using while loop I changed it to foreach loop this way
foreach($_FILES['album_pics']['error'] as $key => $error){
all code remains the same as above in while loop, except every reference to $counter will be replaced by $key
}
Upvotes: 1
Reputation: 458
Please move the function outside of the while loop.. then Run it again.
Upvotes: 0
Reputation: 1232
Rearrange your files initially to better loop over them.
https://gist.github.com/lukeoliff/5531772
Might make the basis of this function easier to flesh out.
<?php
if (!empty($_FILES)) {
$_FILES = rearrangeFiles($_FILES);
}
?>
Turns the following...
Array
(
[name] => Array
(
[0] => foo.txt
[1] => bar.txt
)
[type] => Array
(
[0] => text/plain
[1] => text/plain
)
[tmp_name] => Array
(
[0] => /tmp/phpYzdqkD
[1] => /tmp/phpeEwEWG
)
[error] => Array
(
[0] => 0
[1] => 0
)
[size] => Array
(
[0] => 123
[1] => 456
)
)
into....
Array
(
[0] => Array
(
[name] => foo.txt
[type] => text/plain
[tmp_name] => /tmp/phpYzdqkD
[error] => 0
[size] => 123
)
[1] => Array
(
[name] => bar.txt
[type] => text/plain
[tmp_name] => /tmp/phpeEwEWG
[error] => 0
[size] => 456
)
)
Upvotes: 0