Hi there,
I'm trying to install Chronoforms V5 on Joomla 3.4.
When i go to Components - Chronoforms5-Chronoforms5 I expected to get the control panel - but instead I get the following error: 1146 Table 'worldaid_com.nanlg_chronoengine_chronoforms' doesn't exist SQL=DESCRIBE `nanlg_chronoengine_chronoforms`
phpMyAdmin shows that the table does indeed not exist. What have I done wrong ?
Cheers
Niels
I'm trying to install Chronoforms V5 on Joomla 3.4.
When i go to Components - Chronoforms5-Chronoforms5 I expected to get the control panel - but instead I get the following error: 1146 Table 'worldaid_com.nanlg_chronoengine_chronoforms' doesn't exist SQL=DESCRIBE `nanlg_chronoengine_chronoforms`
phpMyAdmin shows that the table does indeed not exist. What have I done wrong ?
Cheers
Niels
Hi Neils,
You can create the missing table in PHPMyAdmin:
This seems to happen with some database drivers - most often with MSSQL. Please see this FAQ which may help.
Bob
You can create the missing table in PHPMyAdmin:
CREATE TABLE IF NOT EXISTS `#__chronoengine_chronoforms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`params` text NOT NULL,
`extras` longtext NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT '1',
`app` varchar(255) NOT NULL DEFAULT '',
`form_type` int(1) NOT NULL DEFAULT '1',
`content` longtext NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
This seems to happen with some database drivers - most often with MSSQL. Please see this FAQ which may help.
Bob
Dear Bob,
I have the same question here and did create the required table in your answer; but still having same error message alert. Any ideas?
Environment:
Joomla! 3.4.8 Stable [ Ember ] 24-December-2015 19:30 GMT
CF v5
Thanks.
Wing
I have the same question here and did create the required table in your answer; but still having same error message alert. Any ideas?
Environment:
Joomla! 3.4.8 Stable [ Ember ] 24-December-2015 19:30 GMT
CF v5
Thanks.
Wing
Hi wlwan,
I don't see anything to do with ChronoForms in the MySQL error message you posted. I found this Joomla! thread that might help.
Bob
I don't see anything to do with ChronoForms in the MySQL error message you posted. I found this Joomla! thread that might help.
Bob
This topic is locked and no more replies can be posted.