Increase wordpress memory

Is it possible to increase the memory limit available to WordPress to 128M from 64M?

Thanks,

Andrew

  • Kris Tomczyk
    • Ex Staff

    Hi AndrewTraub

    Hope you are doing good today.

    To be more clear if we talk about PHP memory_limit, by default this value on WPMU DEV Hosting is: 256M.

    As for WP_MEMORY_LIMIT on our host this value is 40M.
    WP_MAX_MEMORY_LIMIT is 256M.

    You can simply use below code in wp-config.php file to increase this value:

    define( 'WP_MAX_MEMORY_LIMIT', '256M' );
    define('WP_MEMORY_LIMIT', '256M');

    Hope this help.

    Kind Regards,
    Kris