我目前有一個與我有一個網絡服務器的噩夢。我已經瀏覽了我可以找到的每個堆棧溢出頁面,但仍然沒有成功。無法上傳大小超過1MB的文件 - PHP網絡服務器
我有一個本地運行的Web服務器,我會首先測試這些設置,一切正常,但每當我將相同的設置應用到我的主服務器時,沒有這樣的運氣。
我剛剛通過使用簡單的html頁面和php頁面來處理請求,這仍然失敗,超過1MB的任何東西。
供參考,這是我的HTML腳本:
<!DOCTYPE html>
<html>
<body>
<form action="test.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
</body>
</html>
這是我的test.php頁面來處理請求:
<?php
$target_dir = "";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 8000000) { //8mb
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif") {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
echo "The file ". basename($_FILES["fileToUpload"]["name"]). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
?>
這僅僅是基本的PHP圖片上傳從W3腳本學校 - 這是這個問題使我減少了!
我曾嘗試:
- 編輯php.ini文件然後重新啓動阿帕奇
- 更改HTML形式使得其包括ENCTYPE =「多部分/格式數據」的形式報頭內
- 添加htaccess來,其中的文件是
- 改變上傳腳本指定允許的最大圖像尺寸的比特根www/html等文件夾:
我得到的錯誤是:
Warning: getimagesize(): Filename cannot be empty in /var/www/html/test.php on line 8
File is not an image.Sorry, your file was not uploaded.
誰能幫助我嗎?我也試圖查看禁用mod_security,但我甚至無法在我的apache2服務器上找到它。
非常感謝。
因此,您在本地服務器和主服務器上獲得關於'getimagesize()'的錯誤?通過上傳大於1 MB的文件獲得_that_? –
也許你超出了默認的時間限制,因爲你的文件超過1MB。嘗試使用'set_time_limit(0)'設置時間限制爲無限制;' –
不,我只在主服務器上有錯誤。當我在我的筆記本電腦上運行我的網絡服務器時,只要將它推送到主服務器,一切都很好用。看着set_time_limit(0) - 我添加到php腳本但沒有成功。 –