matt4 Posted July 31, 2012 Share Posted July 31, 2012 I'm trying to upload a client file which is 16mb. I've increased the php max upload limit to 50mb. However I received a invalid file error. Other smaller files will upload fine. Am I missing something here? Thanks, 0 Quote Link to comment Share on other sites More sharing options...
matt4 Posted August 2, 2012 Author Share Posted August 2, 2012 Any idea what I can do? Thank you, 0 Quote Link to comment Share on other sites More sharing options...
robb3369 Posted April 5, 2013 Share Posted April 5, 2013 Same issue... opening ticket. 0 Quote Link to comment Share on other sites More sharing options...
robb3369 Posted April 11, 2013 Share Posted April 11, 2013 Resolution: For file uploads, there are 2 settings you need to modify in the php.ini file: upload_max_filesize and post_max_size. upload_max_filesize should be set to the size of the largest file you wish to upload via a HTTP/HTTPS form (for example: 30M) and post_max_size should be set to at least that multiplied by the number of files you could expect to upload at one time. For example: if upload_max_filesize is set to 30M and you expect to ever upload only 2 files at once, post_max_size should be set to at least 60M. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.