The app I am developing requires taking in a PDF from a user and modifying it then spitting it back out for other users to use.
Having looked into the Table of contents guide, I found that the File Upload directory that you mention in the config file path has to have ftp chmod 777 enabled.
Unfortunately, have checked with the company with have hosting with, the most I can get out of our ftp is 755.
Question 1)
Is there another alternative in Codeigniter to do file uploads that will only require chmod 755?
Also, I looked into uploading to the database instead. The closest relevant question I could find was as follows:
codeigniter image uploading mysql
While I have found articles that detail how to upload any file to a database for php in general (such as below), none of the ones I have found have been particular to CodeIgniter integration.
Article: http://www.phpriot.com/articles/storing-images-in-mysql
Question 2)
Does anyone know of any tutorials that are Codeigniter specific for uploading files to a database? It seems to me that this is the only other alternative to using a file system.