|
出现这样的error提示:
The upload path does not appear to be valid.
但是我已经定义了path呀,而且还加载了嘛,文件路径也是对的。。
$config['upload_path'] = base_url().'images/team_info';
$config['allowed_types'] = 'gif|jpg|png';
$config['encrypt_name'] = true;
$this->load->library('upload',$config); |
|