Advanced search  

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

Pages: [1]   Go Down

Author Topic: Plugin Help Please  (Read 3616 times)

0 Members and 1 Guest are viewing this topic.

dunning72

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Plugin Help Please
« on: September 10, 2011, 11:29:50 pm »

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
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Plugin Help Please
« Reply #1 on: September 12, 2011, 01:54:59 pm »

Quote
mySQL 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';
# --------------------------------------------------------
Logged

dunning72

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Re: Plugin Help Please
« Reply #2 on: September 20, 2011, 04:27:19 am »

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

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Plugin Help Please
« Reply #3 on: September 20, 2011, 10:13:02 am »

Please
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.
Logged
Pages: [1]   Go Up
 

Page created in 0.019 seconds with 20 queries.