No valid database connection Table

GreyHead 27 Jul, 2010
Hi Fritz ,

The table should be created by ChronoForms when you install the extension. It's the one where the plugin configurations are stored and that is what the error messages report :-(

Here is the SQL query to create an empty copy of the table.
CREATE TABLE `jos_chrono_contact_plugins` (
  `id` int(11) NOT NULL auto_increment,
  `form_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `event` varchar(255) NOT NULL,
  `params` longtext NOT NULL,
  `extra1` longtext NOT NULL,
  `extra2` longtext NOT NULL,
  `extra3` longtext NOT NULL,
  `extra4` longtext NOT NULL,
  `extra5` longtext NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8


Bob
Fritz 27 Jul, 2010
I exported the table from another database and imported into this with phpadmin.

It worked until last week! What can never be successful? 😲

Do you think it possible that the client has done some work that has deleted this table?

This thing worries me a lot.... :?
GreyHead 27 Jul, 2010
Hi Fritz ,

The only way that I can think that the client might have deleted this is with the Table Manager, that's possible but must be unlikely :-(

Bob
Fritz 28 Jul, 2010
Thanks for your opinion!
The customer is super administrator. To manage your templates've had to give this permission. I learned long ago that anything is possible!
This topic is locked and no more replies can be posted.