Plogger Support Forum - Memory limit alert from server Thu, 28 Mar 2024 17:37:24 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 Memory limit alert from server http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12357#Comment_12357 http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12357#Comment_12357 Wed, 10 Mar 2010 21:14:35 +0000 kanjigirl
Mar 10 18:36:46 ALERT - script tried to increase memory_limit to 268435456 bytes which is above the allowed value (attacker xx.xxx.xxx.xx', file '/home/mydomain/public_html/wp-admin/includes/file.php', line 501)

What should I do to prevent this alert?

-- sidtheduck edited to remove IP address --
]]>
Memory limit alert from server http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12360#Comment_12360 http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12360#Comment_12360 Thu, 11 Mar 2010 12:30:34 +0000 sidtheduck
By that error message, it looks like a Wordpress file (wp-admin/includes/file.php) and not a Plogger file.]]>
Memory limit alert from server http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12368#Comment_12368 http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12368#Comment_12368 Thu, 11 Mar 2010 22:32:32 +0000 kanjigirl
ALERT - script tried to increase memory_limit to 67108864 bytes which is above the allowed value (attacker '67.195.115.105', file '/home/ygi97ra/public_html/plogger/plog-globals.php', line 7)]]>
Memory limit alert from server http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12373#Comment_12373 http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12373#Comment_12373 Fri, 12 Mar 2010 12:02:33 +0000 sidtheduck
It looks like you have Suhosin installed on your server that increases security. This is where the ALERT is coming from. If you want to see it stop, just comment out the ini_set for memory_limit code on plog-globals.php like so:
//@ini_set('memory_limit', '64M');

Bascally, Plogger is trying to set the default memory_limit to 64MB in order to keep the script from timing out before it has finished processing the uploaded image (same with Wordpress when doing a file upload). I would recommend trying to up your default memory_limit in php.ini to at least 64MB for Plogger (and probably Wordpress) to work correctly and your error messages should go away (Plogger only attempts to up the memory_limit if it's set lower than 64MB).]]>
Memory limit alert from server http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12417#Comment_12417 http://www.plogger.org/forum/comments.php?DiscussionID=3100&Focus=12417#Comment_12417 Sun, 14 Mar 2010 11:37:35 +0000 kanjigirl