• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

Best configuration for php.ini values

mkerala

👽 Chevereto Freak
I am trying to figure out the right settings for below values in php.ini. I looked up on many sites and got divided opinions on these. I am running php 7.1 and has allowed image uploads up to 100MB in size. The site is working fine, but just what to make sure I am using the correct settings. My current settings are as follows.

Code:
max_execution_time = 60

max_input_time = 120

memory_limit = 512M

post_max_size = 200M

upload_max_filesize = 200M

max_file_uploads = 500

Anyone able to provide any input on this?
 
If you say it's working fine with large files then you should ok.

Generally though post_max_size should be more than upload_max_filesize, although it can be equal but not less.

It should be fine but maybe just increase it a little to something like 256M

Don't forget to restart apache afterwards.
 
It does work fine when I tested. But I haven't got a chance to test all scenarios like slow connection. Thanks for your input.
 
Back
Top