Jump to content

[Solved] PHP limit


rikoo

Recommended Posts

hello friends, I want to ask if I can change the value of

 

php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_time 300
php_value memory_limit 256M
 
to
 
php_value upload_max_filesize 25M
php_value post_max_size 25M
php_value max_execution_time 60
php_value max_input_time 60
php_value memory_limit 128M

 

Thankyou

 

Link to comment
Share on other sites

php_value upload_max_filesize 128M

php_value post_max_size 128M

If 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 300

No. 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 256M

No. 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/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...