Папка назначения загрузки не может быть доступна для записи. (Codeigniter)
У меня есть два сценария загрузки, которые выполняют очень похожие функции только с разными каталогами. function town_upload() { //Do not create a thumbnail $create_thumb = false; //Create the path for the upload $path = './public/uploads/towns/' . $this->uri->segment(3); $config['upload_path'] = $path; $config['allowed_types'] = 'jpg'; $config['max_size'] = '2048'; $config['max_width'] = '1024'; $config['max_height'] = '768'; $config['remove_spaces'] = TRUE; […]