|
Date: 5/15/2007 10:03 am · Subject: AOIHits and AOIRank not working problem and solution · Rating: 1
Both AOIHits and AOIRank were not working. This was caused by a simple typo: AOIHits.pm 43 and userId=".$session->db->$session->db->quote($session->user->userId) ." 44 and fieldName=".$session->db->$session->db->quote($key)." 45 and value=".$session->db->$session->db->quote($value);
should be:
43 and userId=".$session->db->quote($session->user->userId)." 44 and fieldName=".$session->db->quote($key)." 45 and value=".$session->db->quote($value); AOIRank.pm 44 and userId=".$session->db->$session->db->quote($session->user->userId)." 45 and fieldName=".$session->db->$session->db->quote($key)." order by a.count desc"; shoud be: 44 and userId=".$session->db->quote($session->user->userId)." 45 and fieldName=".$session->db->quote($key)." order by a.count desc"; Kind regards, Arjan.
|