Hi!
Actually that error also happens because of the missing entryproperties DB table.
What you need to do now is to restore the 'serendipity_entryproperties' database table.
Use a tool like phpMyAdmin to check if the table is still there and you can access it. If you can, try to repair it.
If the table is no longer there, check if you have a backup of your DB and re-upload that part where serendipity_entryproperties is created and filled.
If you don't have a backup, you will need to create a new, empty entryproperties DB table. You will loose any properties you assigned to your entries in the past, like sticky attributes, custom properties or read/write permissions per-entry. You can re-create the empty table with this SQL:
Code: Select all
CREATE TABLE `serendipity_entryproperties` (
`entryid` int(11) NOT NULL default '0',
`property` varchar(255) NOT NULL default '',
`value` text ,
UNIQUE KEY `prop_idx` (`entryid`,`property`),
KEY `entrypropid_idx` (`entryid`),
FULLTEXT KEY `fulltext_idx` (`value`)
);
HTH,
Garvin