• Any time I try to activate the Lifestream plugin by David Cramer I get the following error message.

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 232 bytes) in /home/dustinsc/public_html/wp-content/plugins/lifestream/inc/extensions.php on line 891

    I’m running php5 and mysql 5. Anyone have a suggestion on how to address this issue? I don’t see any function within extensions.php that allows you to adjust memory size. could this be a php.ini configuration issue?

Viewing 4 replies - 1 through 4 (of 4 total)
  • I actually had this issue before with another plugin. What I did is create a php.ini file (like you mentioned) and put these lines in it:

    memory_limit = 32M
    upload_max_filesize = 8M
    post_max_size = 32M

    I’m pretty sure that only the first line is required to solve your problem though.

    ok is good, but where do you put “php.ini” ?
    thanks,

    you can also use a .htaccess hack if you use Apache

    Had same issue. Modified wp-settings.php to fix in root of your WP installation.

    In the first couple line of wp-settings.php…
    if ( !defined(‘WP_MEMORY_LIMIT’) )
    define(‘WP_MEMORY_LIMIT’, ’32M’);

    Modified 32M to 64M and plugin activated not sure yet if that will cause other issues.

    Hope it helps
    -T

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Lifestream plugin unable to be activated in WordPress 2.8’ is closed to new replies.