10-31-2012, 07:41 AM
Mikeyy Wrote:Not really sure about this, I'll let Stephen take a look at this.
I'm still using 1.2.6 beta and have no problems with plugin. What version are you using?
The installation script is buggy. :cry: The SQL statement is this:
Code:
CREATE TABLE IF NOT EXISTS `data_addon` (
`id` int(11) NOT NULL,
`date_expires` date NOT NULL,
`reminder` int(11) NOT NULL,
`date_reminder` date NOT NULL,
`sent` tinyint(4) NOT NULL DEFAULT 0,
UNIQUE KEY `id` (`id`),
KEY `date_expires` (`date_expires`)
) DEFAULT CHARSET=utf8
Should be like this as the standard installation uses the prefix odm_
Code:
CREATE TABLE IF NOT EXISTS `odm_data_addon` (
....
Therefore the table is not found in the database. :roll:
As a workaround change the install script to use the appropriate prefix.
BTW: Why is the script forcing an INNODB scheme?
Regards,
Papershark