Thursday 11 June 2015

How to change the maximum size of uploaded files in PrestaShop?

To change the maximum size of the uploaded files in your server, you have to edit the php.ini file for your PHP install. This can only be done if you do have access to your server’s PHP configuration files. If not, ask your host.
If you do have access to php.ini, open it and edit the following lines:
post_max_size = [anything]
upload_max_filesize = [anything]
If you want to set the maximum to 200 megabytes, change their values to
post_max_size = 200M
upload_max_filesize = 200M
Finally, restart the web server to take your changes into account.

No comments:

Post a Comment