Amigos...
me ajudem com esse erro... não sei o que fazer;
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 72 bytes) in /home/storage/7/b9/ad/anei1/public_html/anei/abimovel/libraries/joomla/database/database/mysql.php on line 462
O erro apontado esta aqui
function loadObjectList( $key='' )
{
if (!($cur = $this->query())) {
return null;
}
$array = array();
while ($row = mysql_fetch_object( $cur )) {
if ($key) {
$array[$row->$key] = $row;
} else {
$array[] = $row;
}
}
mysql_free_result( $cur );
return $array;
}