Query failed:
SELECT
e.id,
e.title,
e.timestamp,
e.comments,
e.exflag,
e.authorid,
e.trackbacks,
e.isdraft,
e.allow_comments,
e.last_modified,
a.realname AS author,
a.username AS loginname,
a.email
FROM
ser_entries AS e
LEFT JOIN ser_authors a
ON e.authorid = a.authorid
LEFT JOIN ser_entrycat ec
ON e.id = ec.entryid
LEFT JOIN ser_category c
ON ec.categoryid = c.categoryid
LEFT JOIN ser_authorgroups AS acl_a
ON acl_a.authorid = 0
LEFT JOIN ser_access AS acl_acc
ON ( acl_acc.artifact_mode = 'read'
AND acl_acc.artifact_type = 'category'
AND acl_acc.artifact_id = c.categoryid
)
WHERE e.timestamp >= 1267398000 AND e.timestamp <= 1270072799 AND isdraft = 'false' AND e.timestamp <= 1328637900 AND (
c.categoryid IS NULL
OR ( acl_acc.groupid = 0)
OR ( acl_acc.artifact_id IS NULL
)
)
GROUP BY e.id
ORDER BY timestamp DESC
/ Table 'godparad_gliblyser.ser_entries' doesn't exist