Our Recent Essays Behind the Front Page
CategoriesQuery failed:
SELECT c.categoryid, c.category_name, c.category_icon, c.category_description, c.authorid, c.category_left, c.category_right, c.parentid, a.username, a.username AS loginname, a.realname FROM csg_category AS c LEFT OUTER JOIN csg_authors AS a ON c.authorid = a.authorid LEFT OUTER JOIN csg_authorgroups AS ag ON ag.authorid = c.authorid LEFT OUTER JOIN csg_access AS acl ON (ag.groupid = acl.groupid AND acl.artifact_id = c.categoryid) GROUP BY c.categoryid ORDER BY category_name ASC/ Got error 28 from storage engine QuicksearchLinksBlog Administration |
The search function did not work as expected. Notice for the administrator of this blog: This may happen because of missing index keys in your database. On MySQL systems your database user account needs to be privileged to execute this query:
CREATE FULLTEXT INDEX entry_idx on csg_entries (title,body,extended)The specific error returned by the database was: SELECT e.id, e.authorid, a.realname AS author, e.allow_comments, e.moderate_comments, a.email, e.timestamp, e.comments, e.title, e.body, e.extended, e.trackbacks, e.exflag, e.isdraft, e.last_modified, a.username AS loginname FROM csg_entries e LEFT JOIN csg_authors a ON e.authorid = a.authorid LEFT JOIN csg_entrycat ec ON e.id = ec.entryid WHERE (MATCH(title,body,extended) AGAINST('gramsci*' IN BOOLEAN MODE)) AND isdraft = 'false' AND timestamp <= 1743506700 GROUP BY e.id ORDER BY timestamp DESC LIMIT 25/ Got error 28 from storage engine |