我收到此错误:
上传目标文件夹似乎不可写。
但is_dir
和is_writable
都返回true。
$config['upload_path'] = './work_order_doc/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size']= '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
$work_order_file="work_order_file";
var_dump(is_dir($config['upload_path']));
var_dump(is_writable($config['upload_path']));
if ( ! $this->upload->do_upload($work_order_file))
{
$error = array('error' => $this->upload->display_errors());
print_r($error);
$temp="";
}
else
{
$upload_data = $this->upload->data();
echo $temp=$upload_data['file_name'];
}
答案 0 :(得分:0)
也许您的主机阻止了文件上传? 您始终可以尝试指定上载目录的完整路径。
答案 1 :(得分:0)
你的PHP配置可能不允许你到达文件/目录,尝试在php.ini中检查open_basedir并确保它在允许的路径中。