-1
我需要上傳多個圖片,我看了很多文件,不工作了,我看到:雜貨店CRUD的多個上傳不起作用
我做了所有他們說,當我打電話在我看來他們的控制器「multiuploader」它工作得很好,但是,當我在我自己的控制器使用不起作用。它將圖像保存到數據庫和文件夾中,但我無法在表單中看到任何內容,例如添加的圖像或列表中的鏈接,即使我之前使用「multiuploader」保存在同一張表中。
如果你能幫助我,我會讚歎不已。提前致謝。
這是我的控制器。
public function Test() {
$this->crud = new Grocery_CRUD_Multiuploader();
$this->crud->set_table('multi_uploader_gallery');
$this->crud->set_subject('Document');
$this->crud->fields("title", "my_pictures", "my_files", "my_mail_attachments");
$this->crud->columns("title", "my_pictures", "my_files", "my_mail_attachments");
$config = array(
/* Destination directory */
"path_to_directory" => 'assets/test',
/* Allowed upload type */
"allowed_types" => 'gif|jpeg|jpg|png',
/* Show allowed file types while editing ? */
"show_allowed_types" => true,
/* No file text */
"no_file_text" => 'No Pictures',
/* enable full path or not for anchor during list state */
"enable_full_path" => false,
/* Download button will appear during read state */
"enable_download_button" => true,
/* One can restrict this button for specific types... */
"download_allowed" => 'jpg'
);
$this->crud->new_multi_upload("my_pictures", $config);
$output = $this->crud->render();
$data['contents'] = 'contents';
$data = array_merge($data, (array) $output);
$this->load->view('template', $data);
}
,當我用我的觀點,但示例表不顯示任何錯誤,但是當我用我的表就說明這一點:
error in my view with the view (list)
您是否收到任何錯誤?你看過錯誤日誌嗎? –
在視圖中我看不到任何錯誤。我在哪裏尋找錯誤日誌? – Mary
當我使用我的視圖但示例表不顯示任何錯誤,但是當我使用我的表時它顯示 – Mary