No, the geotag plugin shouldn't use that much memory!
Maybe you could edit the serendipity_event_geotag.php file, go to around line 255 and you should see this:
Code: Select all
case 'entry_display':
$i = 0;
foreach($eventData AS $event) {
// Check if geo_lat and geo_long are both set
$props = &$eventData[$i]['properties'];
$geotagged = true;
foreach($this->supported_properties AS $prop_key) {
if (!isset($props[$prop_key])) {
$geotagged = false;
}
}
Code: Select all
case 'entry_display':
echo 'Current memory usage is: ' . memory_get_usage() . '<br />';
$i = 0;
foreach($eventData AS $event) {
echo 'New memory usage is: ' . memory_get_usage() . '<br />';
// Check if geo_lat and geo_long are both set
$props = &$eventData[$i]['properties'];
$geotagged = true;
foreach($this->supported_properties AS $prop_key) {
if (!isset($props[$prop_key])) {
$geotagged = false;
}
}
Regards,
Garvin