我有文件上传问题。
我通过ftp和文件管理器
完成了777drwxrwxrwx 2位用户4096 4月10日08:56 gallery / drwxrwxrwx 2用户user 4096 Apr 10 10:30 sales /
我已回复$file_info
并且位置显示正确,但文件未上传:
//Set File Settings
$config['upload_path'] = 'includes/uploads/gallery/';
$config['allowed_types'] = 'jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
$this->upload->do_upload();
$file_info = $this->upload->data();
$data = array(
'description' => $this->input->post('description', TRUE),
'path' => $file_info['file_name']
);
$this->image_model->addImage($data);
答案 0 :(得分:0)
请检查写权限?如果您正在使用linux,请检查SELinux的首选项。
答案 1 :(得分:0)
此问题是由于连接速度缓慢上传到服务器引起的。我尝试了另一种连接,它工作正常。