Reads:58734Replies:3
WP Memory Limit and PHP Max Input Vars:
How can I increase WP Memory Limit? I already define it on my wp-config file (Wordpress), but it seems not working.
And how can I increase the PHP Max Input Vars to 3000? Thanks/ |
|
1st Reply#
Posted time:Mar 26, 2018 20:41 PM
Increasing the WordPress Memory Limit
https://docs.woocommerce.com/document/increasing-the-wordpress-memory-limit/ |
|
|
2nd Reply#
Posted time:Jul 10, 2018 1:45 AM
open php.ini file
upload_max_filesize = 1000M post_max_size = 2000M memory_limit = 3000M file_uploads = On max_execution_time = 180 You can edit memory limit of php |
|
|
3rd Reply#
Posted time:Jul 23, 2018 6:27 AM
you can find .htaccess file in your root folder and try this code:
<IfModule mod_php5.c> php_value memory_limit 128M php_value max_input_vars 5000 </IfModule> |
|