rikoo Posted May 1, 2020 Posted May 1, 2020 hello friends, I want to ask if I can change the value of php_value upload_max_filesize 128Mphp_value post_max_size 128Mphp_value max_execution_time 300php_value max_input_time 300php_value memory_limit 256M to php_value upload_max_filesize 25Mphp_value post_max_size 25Mphp_value max_execution_time 60php_value max_input_time 60php_value memory_limit 128M Thankyou
Krydos Posted May 1, 2020 Posted May 1, 2020 php_value upload_max_filesize 128M php_value post_max_size 128MIf you need to upload such large files, just do so with ftp. Increasing the upload size that big causes php to use a lot of memory and causes server instability. php_value max_execution_time 300 php_value max_input_time 300No. The maximum time that php can run is 60 seconds, which is already a really long time for a php scrip to run for. Increasing this number would cause server instability. php_value memory_limit 256MNo. The maximum memory usage is already at 128MB. Increasing that any further would cause server instability because php would use too much memory and cause load spikes. If you really need that high of settings I recommend checking out our VPS instead of the shared hosting. https://www.heliohost.org/vps/
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now