我想在我的网站上实现多个部分,访问者可以上传他们要显示的图像。 我让它在服务器上的测试文件夹中完美地工作,在那里它回应"文件是一个图像。 [文件]成功上传"并且图像显示在服务器上。
但是,随着这个脚本实际实现到网站(我将脚本复制到另一个文件夹),我得到了返回:500内部服务器错误。
你们中有谁知道会导致这个问题的原因吗?
HTML表单(在/entries.php中):
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="../../style.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#000000">
<form action="upload.php" method="post" enctype="multipart/form-data"><p class="text">
Upload your entry here!:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit"></p>
</form>
</body>
</html>
PHP脚本(在upload.php中):
<?php
$target_dir = "images/";
$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"] > 500000) {
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.";
}
}
?>
答案 0 :(得分:0)
upload_max_filesize
。echo ini_get ("upload_max_filesize");
此命令将为您提供值,然后您可以进入您的php.ini并增加它,如果还不够。
FcgidMaxRequestLen
<IfModule mod_fcgid.c>
MaxRequestLen 15728640
</IfModule>
可能需要增加。
在这种情况下,您可以在httpd.conf中创建一个类似于以下内容的新apache指令。
FcgidMaxRequestLen bytes
{{1}}
由于每家托管公司的配置不同,因此流程可能会有所不同。但这是GoDaddy和Plesk的流程。
您希望将其从PHP脚本所在的目录以及文件上传的目录中移出。如果这允许上传显然你知道.htaccess中存在导致问题的规则/指令。