• Please I want to know how to fix this problem:

    Whenever I click on this particular category link, https://techatlast.com/blogging-tips/ it will bring this error page below:
    __________________________________
    Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 33554440 bytes) in /home/techatl/public_html/wp-content/plugins/wordpress-seo/frontend/class-breadcrumbs.php on line 261
    The site is experiencing technical difficulties.
    __________________________________

    Whenever I tried other categories, they work properly.

    Kindly help with way to do. I am an entry-level coder.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • You need to increase memory allocated to WordPress. For this, you need to edit your wp-config.php file and add this line before the line that says “That’s all, stop editing! Happy blogging.”

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

    That should do the trick.

    Dion

    (@diondesigns)

    Please don’t add the above line…it would make your problem worse!

    You are already allocating 512M to PHP processes, which is an enormous amount of memory for a single front-end WordPress process. I suppose you can increase it further, to perhaps 768M, but increasing the PHP memory limit from an already-huge number will likely lead to page slowdowns. A better idea would be to deactivate some plugins and/or theme options to reduce the amount of required memory.

    Thread Starter Olawale Daniel

    (@coolcash4live)

    Thank you both for your wonderful contributions.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Allowed memory size of 536870912 bytes exhausted (tried to allocate 33554440 byt’ is closed to new replies.