forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 plugins => Topic started by: Strikie on October 01, 2007, 03:07:35 am

Title: Error after instaling a plugin (Help please !)
Post by: Strikie on October 01, 2007, 03:07:35 am
Hello everyone!

I'm writing this message because i have a serious problem right now.
I was using my gallery normally since now, but today i wanted to install a plugin (captcha). When i clicked on the button to install this plugin in the plugin manager, just after that the gallery was down and i got this error: 500 Internal Server Error. Why ?!!

I looked on this forum for some hours, then i tryed to delete the table xxx_plugins in MySQL.
Now i got this error:

Code: [Select]
Fatal error :

While executing query "select * from cpg1410_plugins order by priority asc;" on 0

mySQL error: Table 'hikkiforevergallery.cpg1410_plugins' doesn't exist

I really don't know what to do, please can you help me ?!  :'(
I looked for long time this forum and i didn't found how to it !!
What do i have to do ?  ???

I hope i can have an answer please.
Thanks in advance everyone!

PS: Here is the link for my gallery in case of
http://hikkiforevergallery.free.fr/
Title: Re: Error after instaling a plugin (Help please !)
Post by: François Keller on October 01, 2007, 07:40:48 am
Quote
then i tryed to delete the table xxx_plugins in MySQL.
not a good idea
recreate the plugins table using phpmyadmin. Replace CPG with your table prefix
Code: [Select]
#
# 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)
) TYPE=MyISAM COMMENT='Stores the plugins';
Title: Re: Error after instaling a plugin (Help please !)
Post by: Strikie on October 01, 2007, 12:10:07 pm
Thank you soooo much !! ;)
Now it work again.

Thanks again :D
Title: Re: Error after instaling a plugin (Help please !)
Post by: François Keller on October 01, 2007, 01:03:36 pm
Quote
Now it work again.
good  :D

P.S. It seems your'e french (your web hoster is french). Did you know the french board (http://forum.coppermine-gallery.net/index.php?board=38.0) ?