Codeigniter invalid upload path

后端 未结 5 1252
臣服心动
臣服心动 2021-01-28 16:15

Guys below is given code and folder structure. Anyone can please help me why it appearing \"The upload path does not appear to be valid.\" error? How can I reso

5条回答
  •  囚心锁ツ
    2021-01-28 16:30

    As your upload location is outside of your application folder, something like this should work:

    $config['upload_path'] = realpath(dirname(__FILE__)). '/Uploads/414208/';
    

    if you decide to move your upload location within your application folder, then you can use APPPATH instead of realpath. If you use APPPATH, please note that it will have a trailing slash where realpath doesn't.

提交回复
热议问题