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

前端 未结 10 1653
独厮守ぢ
独厮守ぢ 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条回答
  •  一个人的身影
    2020-12-18 12:33

    If you are on windows try writing to "c:\" and see if that works.

    Also what is the output of site_path() eg echo site_path(); ?

    On xammp I've found I need to write c:\xammp\htdocs\myproject\photos\ instead of just using '\photos\';

提交回复
热议问题