Uploading an image in Codeigniter shows error The upload path does not appear to be valid

前端 未结 10 1652
独厮守ぢ
独厮守ぢ 2020-12-18 11:54
$config[\'upload_path\'] = site_path().\'photos/\';
$config[\'allowed_types\'] = \'gif|jpg|png|jpeg\';
$config[\'max_size\'] = \'2048\';
$this->load->library(\         


        
10条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-18 12:22

    $config['upload_path'] = './photos/';
    $config['allowed_types'] = 'gif|jpg|jpeg|png';
    $config['max_size'] = '1000';
    $config['max_width'] = '1920';
    $config['max_height'] = '1280';                     
    
    $this->upload->initialize($config);
    

    write this code in your controller block

    this problem is common i know your wrote this code in __construct() block but right method is use this code in particular Controller where upload code are call.

提交回复
热议问题