2016-09-20 138 views
-1

我有一個頁面,我希望用戶能夠上傳.pdf,.docx和.doc文件。 PDF和DOCX上傳工作正常,但不會允許DOC文件。PHP .doc文件上傳不起作用

這裏是我的外形和輸入按鈕:

<form action="?action=uploadForm" method="post" enctype="multipart/form-data" style="border:1px solid black;"> 
<input type="file" class="btn btn-md btn-primary btn-block" name="fileToUpload" id="fileToUpload" accept=".pdf,.docx,.doc" title="PDF and Word files only" /> 

這似乎與該文件永遠不會被投入$_FILES DOC文件。

這是我所有的文件驗證/上傳邏輯:

if (isset($_GET['action']) == 'uploadForm') { 
    // Get the option from the dropdown, so we can upload the form to the right directory 
    $selectedTypeOfForm = $_POST['typeOfForm']; 

    $target_dir = "files/" . $selectedTypeOfForm . "/";    // The directory for the upload to go to 
    $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]); // The name of the file being uploaded 
    $fileName = basename($_FILES["fileToUpload"]["name"]); 
    $uploadOk = 1; 
    $fileType = pathinfo($target_file,PATHINFO_EXTENSION); 

    dump($_FILES); 

    $_SESSION['message'] .= "<br>"; 

    // Check if file already exists 
    if (file_exists($target_file)) { 
     $_SESSION['message'] .= "Sorry, the file <b>" . $fileName . "</b> already exists.<br>"; 
     $uploadOk = 0; 
    } 

    // Check file size 
    if (($fileType == "pdf" && $_FILES["fileToUpload"]["size"] > MAXIMUM_PDF_SIZE) || ($fileType == "doc" && $_FILES["fileToUpload"]["size"] > MAXIMUM_WORD_SIZE) || ($fileType == "docx" && $_FILES["fileToUpload"]["size"] > MAXIMUM_WORD_SIZE)) { 
     $_SESSION['message'] .= "Sorry, the file <b>" . $fileName . "</b> is too large. The file must be under "; 

     if ($fileType == "pdf") { 
      $_SESSION['message'] .= (MAXIMUM_PDF_SIZE/1000000) . "MB for a PDF.<br>"; 
     } else { 
      $_SESSION['message'] .= (MAXIMUM_WORD_SIZE/1000000) . "MB for a Word document.<br>"; 
     } 

     $uploadOk = 0; 
    } 

    // Allow certain file formats 
    if($fileType != "pdf" && $fileType != "doc" && $fileType != "docx") { 
     $_SESSION['message'] .= "Sorry, only PDF, DOC, and DOCX files are allowed. You tried to upload a <b>" . strtoupper($fileType) . "</b>.<br>"; 
     $uploadOk = 0; 
    } 

    // FINAL UPLOAD 
    // Check if $uploadOk is set to 0 by an error 
    if ($uploadOk == 0) { 
     $_SESSION['message'] .= "<br>Sorry, your file <b>" . $fileName . "</b> was not uploaded.<br>"; 
    // if everything is ok, try to upload file 
    } else { 
     if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) { 
      $_SESSION['message'] .= "<br>The file <b>" . basename($_FILES["fileToUpload"]["name"]) . "</b> has been uploaded.<br>"; 
     } else { 
      $_SESSION['message'] .= "<br>Sorry, there was an error uploading the file <b>" . $fileName . "</b>.<br>"; 
     } 
    } 

    // header('Location:/forms.php'); 
    echo "<a href='/forms.php'>FORMS</a>"; 
    exit; 
} 

並上傳.doc文件顯示以下信息:

Sorry, the file already exists. 
Sorry, only PDF, DOC, and DOCX files are allowed. You tried to upload a . 

Sorry, your file was not uploaded. 
+0

你得到一個「該文件已存在」?那麼...... – arkascha

+0

'if(isset($ _ GET ['action'])=='uploadForm')' - 太多人一遍又一遍地犯同樣的錯誤。這是一個誤報。 –

+0

爲什麼被標記爲「javascript」? –

回答

0

的問題是在PHP upload_max_filesizepost_max_size。 INI。在我的代碼觸及它之前,該文件已經消失,因爲這些值被設置爲低於我想要上傳的.doc文件的大小。