Plugin Help Please Plugin Help Please
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Plugin Help Please

Started by dunning72, September 10, 2011, 11:29:50 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

dunning72

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

Αndré

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';
# --------------------------------------------------------

dunning72

I simply restored the database to an earlier time. The plugin was somehow missing. Thank you for the help. 8)

Αndré

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.