У меня проблема с загрузкой файла.
Я сделал 777 через FTP и файловый менеджер
drwxrwxrwx 2 user user 4096 10 апреля 08:56 галерея /
drwxrwxrwx 2 пользователь user 4096 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);