Plugin Help Please Plugin Help Please
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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.