prestashop file too large should not exceed

Solutions on MaxInterview for prestashop file too large should not exceed by the best coders in the world

showing results for - "prestashop file too large should not exceed"
Mira
25 Jul 2016
11) index.php 
2  die(phpinfo());
32) check this parametres
4  1- max_file_uploads =  ? M
5  2- post_max_size =  ? M
6  3- upload_max_filesize =  ? M
73) change this parameters in your php.ini server
8  post_max_size = 50M
9  upload_max_filesize = 50M
10  max_file_uploads = 20M
11  
124) Navigate to side menu > Advanced Parameters > Administration > Upload Quota. 
13   Change the Maximum size for attachment (in megabytes) to a value that is equal to or larger than 20 MB.
14     
155) .httaccess Website add this
16     
17php_value upload_max_filesize 10M
18php_value post_max_size 20M
19php_value memory_limit 32M  
20     
216) Reload your Server or refresh