簡體   English   中英

Codeigniter圖片上傳問題

[英]Codeigniter Image uploading issue

我正在從事Codeigniter項目。 所有人都在我的本地主機上工作。 現在,我已經轉移了服務器上的所有內容。 我也在使用cloudfare

問題是當我嘗試上傳圖片時,它顯示了空白屏幕。 以下是我的控制器代碼。

// Add Data
    function add(){
        $data['pageTitle']=$this->lang->line('siteTitle');
        // Breadcrumbs
        $this->breadcrumbs->push('Dashboard','admin/dashboard');
        $this->breadcrumbs->push('Category List','admin/category/index');
        $this->breadcrumbs->push('Add Category','admin/category/add');
        // Load View
        // Form Submit
        $this->form_validation->set_rules('_cat_title','Title','required|is_unique[pu_project_category.c_title]');
        $this->form_validation->set_rules('_cat_slug','Slug','required');
        $this->form_validation->set_rules('_cat_desc','Description','required');
        if($this->form_validation->run()==TRUE){
            if($this->upload->do_upload('_cat_image')){
                $image=$this->upload->data();
                $image=$image['file_name'];
            }else{
                $image='No Image';
            }
            $data['resUpload']=$this->upload->display_errors();
            $data['res']=$this->Category_Model->add($image);
        }
        // Load View
        $this->load->view('admin/common/header',$data);
        $this->load->view('admin/common/left-sidebar',$data);
        $this->load->view('admin/category/add',$data);
        $this->load->view('admin/common/footer',$data);
    }

以下是上傳文件的配置代碼,

// Upload Configuration
$config['upload_path']          = './project_images/';
$config['allowed_types']        = 'gif|jpg|png|jpeg|zip';
$config['max_size']             = '2000';
$this->load->library('upload', $config);
$this->upload->initialize($config);

請幫助我解決此問題,並告訴我我做錯了什么。

嘗試這個

    public function add()
{



      $this->form_validation->set_rules('_cat_slug','Slug','required');

   if($this->form_validation->run() == TRUE)
            {
                   $this->load->model('welcome_model');//change this with your model



               //image upload
                $config['upload_path'] = './uploads/';
                $config['allowed_types'] = 'png|gif|jpg|jpeg';
                $config['max_size']    = '7000';
                $this->load->library('upload',$config);
                if ( ! $this->upload->do_upload('image'))
                {
                   $error = array('error' => $this->upload->display_errors());
                    $this->load->view('upload_view', $error);  //loads the view display.php with error
                }

                $upload_data=$this->upload->data();

                $image=$upload_data['file_name'];

                $this->load->view('upload_view');

                     $data= array(
                    '_cat_slug' => $this->input->post('_cat_slug'),
                    'image' => $image

                ); //loads view display.php with data
               $this->welcome_model->registre($data);//change this with your model function name
            }


            else
            {  

            echo validation_errors();


            }

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM