• Dear all,

    Anyone experience this error and know how to resolve? I cannot login to my wordpress site.
    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home/xyz/public_html/site.com/wp-admin/includes/menu.php on line 165

    I have tried to increase the memory settings in wp-config.php from 32 to 64mb

    Please help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • 1st rename your plugins folder
    this will deactivate them and hopefully let you log in
    if so, rename plugins folder back to normal and activate plugins 1 by 1

    if not,
    1. Try adding this line to your wp-config.php file:
    Increasing memory allocated to PHP
    define('WP_MEMORY_LIMIT', '128M');

    2. If you have access to your PHP.ini file, change the line in PHP.ini
    If your line shows 32M try 128M:
    memory_limit = 128M ; Maximum amount of memory a script may consume (128MB)

    3. If you don’t have access to PHP.ini try adding this to an .htaccess file:
    php_value memory_limit 128M

    Talk to your host.

    Thread Starter lord2035

    (@lord2035)

    First method to rename the plugin works sweet! Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Fatal Error: memory exhausted on line 165’ is closed to new replies.