Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
Hello Admin,
I am implementing the file upload feature on the front-end using secure file type. Everything is working well except for the fact that I am unable to upload file size above 9MB: I have done all the necessary checks but still nothing is working:
Code: Select all
1. <cms:editable name='product_media' required='0' allowed_ext='pdf, doc, docx,mov,mpeg,mpg,mp4' max_size='83890' type='securefile' order="10000" />

2. // Maximum permissible size
$Config['k_max_upload_size'] = '0'; //Size in MB. Set to '0' to allow any size.



When I attempt to upload anything above 9MB, the page reloads, the success message is not shown, no error message is shown and the data is not persisted to the database either. What could I be doing wrong here. Thank you
Hi,

It seems you are hitting the limits set for your PHP installation.
There are several settings in php.ini that need tweaking to up the limit - please see viewtopic.php?f=4&t=9552#p21099 for some.

Hope this helps.
Yes Admin,
I had to clear every single cache to get it working. Thank you
3 posts Page 1 of 1