I want to upload a large file of maximum size 10MB to my MySQL database. Using .htaccess
I changed PHP's own file upload limit to "10485760" = 10MB. I am able to upload files up to 10MB without any problem.
But I can not insert the file in the database if it is more that 1 MB in size.
I am using file_get_contents
to read all file data and pass it to the insert query as a string to be inserted into a LONGBLOB field.
But files bigger than 1 MB are not added to the database, although I can use print_r($_FILES)
to make sure that the file is uploaded correctly. Any help will be appreciated and I will need it within the next 6 hours. So, please help!