OptimizePress Plugin and Max Memory Conflict

Issue Summary

I’m running the OptimizePress Dashboard Plugin and encountered an error that I need 256M to run (states I only have 40M). Checked the PHP.INI.HBS file and MAX MEMORY is 256M.

Troubleshooting Questions

How do I fix this issue?

Replication

I’ve included a screenshot.

System Details

Hi there @rstortorello - welcome to the Local community! :wave:

It looks like your PHP memory limit is set to 256M, not your WP Memory Limit.

You should be able to update that constant within the wp-config.php file which can be found in app/public/.

  1. IMPORTANT: Make a backup of the wp-config.php file first.

  2. Find the line /* That's all, stop editing! Happy publishing. */

  3. Right above that line, paste in this code: define('WP_MEMORY_LIMIT', '256M');

  4. Save that file & restart the site.

The WP_MEMORY_LIMIT should now be set to 256M.

Screen Shot 2023-03-03 at 9.15.24 AM

Let me know if this helps!

Sam

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.