Results 1 to 4 of 4

Thread: Wordpress Fatal Error : Allowed memory size bytes exhausted

  1. #1
    Join Date
    Mar 2008
    Posts
    227

    Wordpress Fatal Error : Allowed memory size bytes exhausted

    Hello,

    I'm have WordPress 2.6,

    Here's my error message:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 35 bytes) in/web/sites/vhbu3/2/64/74763/public/www/wp-includes/plugin.php on line 274

    I just identify the problem. It comes from the WP-Sticky Plugin! When I disable all, it functions correctly again. I want to change my sticky article, but when I select Normal instead of the Announcement, to do anything it does not take into account my request. This allows normally sticky article to resume its no place in the hierarchy of items.

    My problem is a concern for memory allocation,
    In your opinion what can I do to solve this problem??

  2. #2
    Join Date
    May 2008
    Posts
    686

    Re: Wordpress Fatal Error : Allowed memory size bytes exhausted

    This error message can occur in a PHP script where the first functional requirements exceed 8MB of memory limit. Not angry, this is a problem of easy solution.

    Solutions

    Change the limit of memory for a script including a special line at the beginning of the script.

    Code:
    ini_set ( "memory_limit", "12M");
    If this does not work, continue increasing the memory limit set by your script.

    You can also make this change permanent for all PHP scripts running on the server by changing the server directly in php.ini:

    Code:
    memory_limit = 12M
    Remember that increasing the limit of memory for a script is a poor solution, or a poorly developed script wastes memory and causes many problems if performed frequently. This is UAM solution should be used only in casual scripts in other applications the problem should be solved optimizing the code.

  3. #3
    Join Date
    May 2008
    Posts
    249

    Re: Wordpress Fatal Error : Allowed memory size bytes exhausted

    If you do not have access to php.ini you can the problem be solved by the following code to add to it. Htaccess file:

    Code:
    php_value memory_limit 32M
    Since you most shared hosting / virtual hosting accounts have access to it. Htaccess file, it will for most bloggers is the only option for the allowed memory size exhausted error itself to solve. Not all web hosts allow the use of php_value directives in. Htaccess file. A host for security reasons, the use of these codes are blocked.

  4. #4
    Join Date
    Dec 2007
    Posts
    493

    Re: Wordpress Fatal Error : Allowed memory size bytes exhausted

    And if you do not have access to php.ini and the. Htaccess code did not work you should contact your webhost. The host can limit the memory then you level up.

Similar Threads

  1. SanDisk flash drive “0 bytes used and 0 bytes free”
    By Coloma in forum Hardware Peripherals
    Replies: 5
    Last Post: 03-12-2012, 10:56 AM
  2. Netgear GS108E switching MTU packets size not more than 540 bytes.
    By Gridhar in forum Networking & Security
    Replies: 4
    Last Post: 08-03-2012, 09:48 AM
  3. File size shows 0 bytes in Media player 12
    By VivRichards in forum Windows Software
    Replies: 4
    Last Post: 28-12-2010, 10:05 PM
  4. Replies: 5
    Last Post: 16-06-2010, 09:20 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,726,890,408.84787 seconds with 16 queries