The installer partially fails and is unable to create the forms table because the default value for the published_from and published_till is invalid. The following is what is shown in the console:
Could not create table `formalicious_forms` SQL:
CREATE TABLE `formalicious_forms` (
`id` INT ( 11 ) NOT NULL AUTO_INCREMENT,
`category_id` INT ( 10 ) NOT NULL DEFAULT '0',
`name` VARCHAR ( 255 ) NOT NULL DEFAULT '',
`published` TINYINT ( 1 ) NOT NULL DEFAULT '0',
`published_from` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
`published_till` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
`saveform` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT '0',
`redirectto` INT ( 10 ) UNSIGNED NOT NULL DEFAULT '0',
`email` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT '0',
`emailto` TEXT NOT NULL,
`emailsubject` VARCHAR ( 255 ) NOT NULL DEFAULT '',
`emailcontent` TEXT NOT NULL,
`fiaremail` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT '0',
`fiaremailto` INT ( 11 ) UNSIGNED NOT NULL DEFAULT '0',
`fiaremailfrom` TEXT NOT NULL,
`fiaremailsubject` VARCHAR ( 255 ) NOT NULL DEFAULT '',
`fiaremailcontent` TEXT NOT NULL,
`fiaremailattachment` TEXT NOT NULL,
`prehooks` VARCHAR ( 255 ) NOT NULL DEFAULT '',
`posthooks` VARCHAR ( 255 ) NOT NULL DEFAULT '',
`parameters` TEXT NOT NULL,
PRIMARY KEY ( `id` ),
INDEX `category_id` ( `category_id` ),
INDEX `saveform` ( `saveform` ),
INDEX `email` ( `email` ),
INDEX `fiaremail` ( `fiaremail` )) ENGINE = MyISAM
ERROR: Array ( [0] => 42000 [1] => 1067 [2] => Invalid default value for 'published_from' )
Could not load class: modTransportPackage from mysql.modtransportpackage
Could not get table name for class:
Error 42000 executing statement: Array ( [0] => 42000 [1] => 1064 [2] => You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS `latestPackage` WHERE `latestPackage`.`package_name` = `modTransp' at line 3 )
The installer partially fails and is unable to create the forms table because the default value for the published_from and published_till is invalid. The following is what is shown in the console: