Had an interesting problem with one of our sites. When we went to update the entries in one of our weblogs, 99% of the records were blank. Weird. No problems with editing the rest of the entries and no problems posting material to the site. And when we looked at the database, the exp_weblog_data was blank. We thought it might be a problem with one of the fields we used specifically for that weblog, we thought it might be some corrupted text entered in one of the fields, we pretty much ran through the gamut of trial and error.
After going through an assortment of mySQL queries, we spotted a problem. Something was overwriting our memory allocation of 64M. Here’s what we did:
We opened the index.php file and added this to the end of our file:
<?php
echo "***".ini_get("memory_limit");
?>Once posted to the server, we opened the EE CP and scrolled to the bottom of the page. And there it was: *** 12M.
We did a find/replace through the whole site and caught three extensions that contained
ini_set("memory_limit","12M");Our culprits were ext.cp_jquery.php, ext.ez_edit_menu.php and pi.imgsizer.php. When we commented out the ini_set in all three files - VIOLĂ - problem solved.
Just wanted to pass this along because these forums have saved me more than once! Hope this helps someone else.
Jan