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
uploadifive.js
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);