• Resolved m83

    (@m83)


    Hi,

    I had a problem this day I tried to solve the problem, but all my attempts failed.
    The problem is when I try to access my control panel a get this error “Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /XXXX/XXXX/public_html/wp-admin/includes/plugin.php on line 155”
    what can I do? please help me I need to solve this problem As soon as possible. I cannot any thing just waiting for the solution. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • May need to increase memory available to PHP.

    Methods for increasing the amount of memory a PHP script may consume

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

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

    3. Try adding this line to your wp-config.php file:
    define('WP_MEMORY_LIMIT', '64M');

    4. Talk to your host.

    Hi,

    Add this code in htaccess of your blog:

    php_value memory_limit 64M

    You can increase the memory limit according to your requirement.

    Thanks,

    Shane G.

    Thread Starter m83

    (@m83)

    thanks guys, I solve my problem

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I cannot access my Control Panel !!’ is closed to new replies.