codeigniter upload not working on linux

前端 未结 1 940
孤独总比滥情好
孤独总比滥情好 2021-01-26 09:45

I\'m developing an application using CodeIgniter 2.2.0. In my app, users will be able to upload pdf files to the server.

I\'m using uploadifive.js on the i

相关标签:
1条回答
  • 2021-01-26 10:12

    Check your folder's permissions. If you create your folders programmatically with php you can set your permissions right after with http://php.net/manual/en/function.chmod.php.

    ex.

    chmod("/path/to/somedir", 0755); 
    
    0 讨论(0)
提交回复
热议问题