What does this mean? My site is not up. What plugin is the problem and how do I get it? Thank you.
While executing query "select * from cpg_plugins order by priority asc;" on 0
mySQL error: Table 'blo0734205505539.cpg_plugins' doesn't exist
-Mike
QuotemySQL error: Table 'blo0734205505539.cpg_plugins' doesn't exist
Means: the required plugin table doesn't exist in your database (for whatever reason). If you have a backup, restore the table from there. If you have no backup, you can create that table with a tool like PHPMyAdmin:
Quote from: sql/schema.sql#
# Table structure for table CPG_plugins
#
CREATE TABLE CPG_plugins (
plugin_id int(10) unsigned NOT NULL auto_increment,
name varchar(64) NOT NULL default '',
path varchar(128) NOT NULL default '',
priority int(10) unsigned NOT NULL default '0',
PRIMARY KEY (plugin_id),
UNIQUE KEY name (name),
UNIQUE KEY path (path)
) COMMENT='Stores the plugins';
# --------------------------------------------------------
I simply restored the database to an earlier time. The plugin was somehow missing. Thank you for the help. 8)
Please
Quote from: Joachim Müller on September 28, 2008, 12:46:26 PM
tag your answer as "solved" by clicking on the "Topic Solved" button on the bar at the left hand side at the bottom of your thread.