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: Error after instaling a plugin (Help please !)  (Read 4251 times)

0 Members and 1 Guest are viewing this topic.

Strikie

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Error after instaling a plugin (Help please !)
« 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/
« Last Edit: October 01, 2007, 01:03:49 pm by Frantz »
Logged

François Keller

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: fr
  • Offline Offline
  • Gender: Male
  • Posts: 9094
  • aka Frantz
    • Ma galerie
Re: Error after instaling a plugin (Help please !)
« Reply #1 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';
Logged
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

Strikie

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Re: Error after instaling a plugin (Help please !)
« Reply #2 on: October 01, 2007, 12:10:07 pm »

Thank you soooo much !! ;)
Now it work again.

Thanks again :D
Logged

François Keller

  • Dev Team member
  • Coppermine addict
  • ****
  • Country: fr
  • Offline Offline
  • Gender: Male
  • Posts: 9094
  • aka Frantz
    • Ma galerie
Re: Error after instaling a plugin (Help please !)
« Reply #3 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 ?
Logged
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog
Pages: [1]   Go Up
 

Page created in 0.018 seconds with 19 queries.