0

我无法上传我的 PDF 文件,即使我尝试了谷歌的一些提示。但是,我的 php 上传仍然无法正常工作。我已将文件夹权限更改为777.

<form enctype="multipart/form-data" action="uploader.php" method="POST"> 
<input type="hidden" name="MAX_FILE_SIZE" value="3500000" />
Upload File: <input name="uploadedfile" type="file" />
<input type="submit" value="Upload File" />
</form>

$target_path = "/home/jeinqa/www/apps/upload/";

$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
        echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded";
                }
        else{
                echo "There was an error uploading the file, please try again!";
                }

显示 : There was an error uploading the file, please try again!


尝试使用print_r($_FILES);

Array ( [uploadedfile] => Array ( [name] => SOP-31 KW-HDR81BTJD.pdf [type] => [tmp_name] => [error] => 2 [size] => 0 ) ) There was an error uploading the file, please try again!
4

1 回答 1

1
  1. 您的文件夹是否有 777 权限(以及所有子文件夹)?
  2. 你在 PHP.ini 中启用了 safe_mode 吗?
  3. 您的 MAX_FILE_SIZE 为 10 KB,但我怀疑您的文件是否如此之小,请检查您的文件大小。
  4. target_path 是否存在?
  5. 尝试将您的 target_path 从绝对更改为相对,它可能会变成:上传。

更新

你的文件太大了!只需更改最大尺寸!有关详细信息,请参阅http://php.net/manual/en/features.file-upload.errors.php

您的错误:值:2;上传的文件超出了 HTML 表单中指定的 MAX_FILE_SIZE 指令。

于 2012-12-05T09:41:19.400 回答