Answers for "memory in wordpress"

PHP
1

memory limit wordpress

//Wordpress Memory Limit
define( 'WP_MAX_MEMORY_LIMIT', '256M' ); //BACK-END MEMORY LIMIT
define('WP_MEMORY_LIMIT', '128M'); //FRONT-END MEMORY LIMIT
Posted by: Guest on January-20-2022
0

increase memory limit wordpress

# add to htaccess
    php_value upload_max_filesize 64M
    php_value post_max_size 128M
    php_value memory_limit 256M #MEMORY LIMIT SIZE
    php_value max_execution_time 300
    php_value max_input_time 300
Posted by: Guest on February-22-2022

Code answers related to "memory in wordpress"

Browse Popular Code Answers by Language