• Resolved aclys

    (@aclys)


    Hello,

    I need to know where the “show on screen” amount (show x post on editing screen) is saved. I have edited to show 60 posts but then I have caused trouble:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 81 bytes) in wp-settings.php on line 307

    No I want to set it back to 20, but cannot find its place – means, the place where the amount of post to show is saved to edit manually.

    Thanks in advance.

    It’s Version 2.9.2

Viewing 2 replies - 1 through 2 (of 2 total)
  • Might as well increase memory allocated to PHP:

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

    1. Use the memory bump plugin from http://wordpress.org/extend/plugins/memory-bump/

    2. 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)

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

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

    5. Talk to your host.

    Note in some cases might even have to increase to 256M!

    Just in case you don’t want to do that, the edit_post_per_page for each user is kept in the usermeta table.

    Thread Starter aclys

    (@aclys)

    The host increased my memory before I installed 2.9.2 to 50M via htaccess, I’ll make it up to 64M and try to use the plugin successfully. 😉

    Thanks for great answer with many possibilitys just in case one or more aren’t allowed to do.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘“Show on Screen” Post-Options: Where is it saved?’ is closed to new replies.