ForexTalk Member Aug 6, 2016 #1 Hello, My forum is new install with no add-on, the upload size limit is 80MB. When I upload a test file, with .rar or .zip extention, test file size around 10MB, it always return error: Small images upload is fine. Can you please let me know what is wrong? Thank you.
Hello, My forum is new install with no add-on, the upload size limit is 80MB. When I upload a test file, with .rar or .zip extention, test file size around 10MB, it always return error: Small images upload is fine. Can you please let me know what is wrong? Thank you.
m1ne Well-known member Aug 6, 2016 #2 Check post_max_size and upload_max_file_size in php.ini. Or you can try something like this in .htaccess, Code: php_value upload_max_filesize 80M php_value post_max_size 80M Upvote 0 Downvote
Check post_max_size and upload_max_file_size in php.ini. Or you can try something like this in .htaccess, Code: php_value upload_max_filesize 80M php_value post_max_size 80M
Snog Well-known member Aug 6, 2016 #4 Be careful with that. In general... memory_limit should be greater than post_max_size post_max_size should be greater than upload_max_filesize Upvote 0 Downvote
Be careful with that. In general... memory_limit should be greater than post_max_size post_max_size should be greater than upload_max_filesize