Frequently Asked Question

Demo Content Recommendations
Last Updated 8 years ago

Increasing Max. Post Size

There are 2 different ways you can increase your maximum post size, the first is by editing your php.ini file and changing the value:
post_max_size = 64M

If you are unable to locate a php.ini you will need to speak with your web host as this is not something we can locate for you due to the large amount of different server configurations. You may need to create a new php.ini file in your root directory with the above value if you cannot locate any php.ini files.

In some cases you might be able to insert this code in the wp-config.php file to increase the limit:
@ini_set( 'post_max_size', '64M');

Increasing Memory Limit

You can increase the memory limit of your website by following the same methods above however by adjust a different value. Here is the value to change in the php.ini file or to add to your php.ini file if one doesn't exist:
memory_limit = 256M

or here is the code you can to the wp-config.php file:
@ini_set('memory_limit','256M');

Increasing Max. Execution Time

Following the same method described under Increasing Max. Post Size here is the php.ini value to change or add to a newly created file:
max_execution_time = 30

and here is the code that can be added to the wp-config.php:
@ini_set('max_execution_time','30');



Please note if the above methods do not work in adjusting the values there is chance that your host is restricting your access to changing the files and this is something you will need to speak with your host about as we do not have access to your server or its restrictions.

Please Wait!

Please wait... it will take a second!