• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

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