2015-12-10 47 views
2

我一直在關注的笨文件上傳教程here前幾天。笨上傳錯誤不顯示

在完成本教程的點,上傳現場工作正常顯示錯誤的文件路徑無效,類型和尺寸。

但現在它只是顯示和錯誤的無效的文件路徑,但不能是文件類型或尺寸。當試圖上傳無效的文件類型或維度時,上傳字段變爲空白並且沒有錯誤消息。

這裏是我的代碼:

上傳控制器

<?php defined('BASEPATH') OR exit('No direct script access allowed'); 
class Upload extends CI_Controller 
{ 
    public function __construct() 
    { 
     parent::__construct(); 
     $this->load->helper("form"); 
     $this->load->helper("url"); 
    } 

    public function index() 
    { 
     $this->load->view("templates/index"); 
    } 

    public function upload_form() 
    { 
     $this->load->library("upload_helper"); 
     $config = $this->upload_helper->upload_config("./static_repo/uploads/", "gif|jpg|png", 100, 1024, 768); 
     $this->load->library("upload", $config); 

     if(!$this->upload->do_upload("userfile")) 
     { 
      $data = array(
       "error" => $this->upload->display_errors() 
      ); 

      $this->load->view("upload/upload_form_page", $data); 
     } 
     else 
     { 
      $data = array(
       "upload_data" => $this->upload->data() 
      ); 

      $this->load->view("upload/upload_success_page", $data); 
     } 
    } 
} //end class Upload 

HTML表單

<?= $error ?> 

<form enctype="multipart/form-data" method="post"> 
    <input type="file" name="userfile" size="20"> 
    <br/><br/> 
    <input class="btn btn-default" type="submit" value="upload"/> 
</form> 
+1

其中是表單的動作?? –

+1

製作'$ config'類似文檔的榜樣。 – Tpojka

回答

0

我已經解決了它。

不得不修改我的本地WAMP的服務器上的post_max_size php.ini中。