• Here is what I get when I try to upload a new picture:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 700 bytes) in public_html/wp-content/plugins/nextgen-gallery/lib/gd.thumbnail.inc.php on line 927

    this has never happened before…

    Anyone else have this issue?
    Could it be a permissions issue? even though I have never encountered this before.

Viewing 1 replies (of 1 total)
  • This may help:

    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 16M try 32M:
    memory_limit = 32M ; Maximum amount of memory a script may consume (32MB)

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

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

    4. Talk to your host.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: NextGEN Gallery] Thumbnail Error on Upload’ is closed to new replies.