这是(几乎)完美地工作一些文件被上传而一些文件没有(特别是巨大的文件)。任何的想法 ?我认为ini_set('post_max_size', '1024M');
和ini_set('upload_max_filesize', '1024M');
可以解决尺寸问题,但它无法正常工作。
<?php
ini_set('post_max_size', '1024M');
ini_set('upload_max_filesize', '1024M');
if (isset($_FILES["myfile"])) {
if ($_FILES["myfile"]["error"] > 0) {
echo "Error: " . $_FILES["file"]["error"] . "<br>";
} else {
$target_path = "uploads/";
if(!file_exists($target_path)){mkdir($target_path);}
move_uploaded_file($_FILES["myfile"]["tmp_name"], $target_path.$_FILES["myfile"]["name"]);
echo "<pre>";
print_r($_POST);
print_r($_FILES);
}
}
?><!doctype html>
<head></head>
<body>
<form action="/" method="post" enctype="multipart/form-data">
<input type="file" name="myfile">
<input type="submit" value="Upload">
</form>
</body>
</html>
答案 0 :(得分:0)
可能是超时或内存限制。您可以尝试在htaccess中增加它们
php_value memory_limit 150M
php_value max_execution_time 500
答案 1 :(得分:0)
尝试在php.ini中增加memory_limit。
您还可以尝试以块的形式上传。见http://www.plupload.com/