Hi all,
Just checking out Docebo. Looks like a great project!!! But…I can’t seem to get it working correcly. Running a Windows Vista as my test platform, IIS 7, MySQL 5.1 and PHP 5.2. No problems there as Moodle and Joomla run fine. Tried working with both Docebo 3.5 and 3.6, but both fail to runn properly from a clean install.
Everything installed correctly, languages included, but, many oeprations fail because of database errors. For istance, the CMS_Area db has a new field in 3.6 called Last_Modify as a date field that can not contain a Null. The PHP script that updates this table does not pass a date and the operation fials. Remove the Null constraint and everything is fine.
The script that installs the DB is:
CREATE TABLE `cms_area` (
`idArea` int(11) NOT NULL auto_increment,
`idParent` int(11) NOT NULL default '0',
`path` varchar(255) NOT NULL default '',
`lev` int(10) NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`alias` varchar(255) NOT NULL default '',
`template` varchar(255) NOT NULL default '',
`mr_title` varchar(255) NOT NULL default '',
`browser_title` varchar(255) NOT NULL default '',
`keyword` text NOT NULL,
`sitedesc` text NOT NULL,
`link` varchar(255) NOT NULL default '',
`home` tinyint(1) NOT NULL default '0',
`publish` tinyint(1) NOT NULL default '0',
`langdef` tinyint(1) NOT NULL default '0',
`show_in_menu` tinyint(1) NOT NULL default '1',
`show_in_macromenu` tinyint(1) NOT NULL default '1',
`last_modify` DATETIME NOT NULL ,
PRIMARY KEY (`idArea`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Another script that has all the DB ‘s in the install directoy called db_full.sql shows no last_modify at all :
CREATE TABLE `cms_area` (
`idArea` int(11) NOT NULL auto_increment,
`idParent` int(11) NOT NULL default '0',
`path` varchar(255) NOT NULL default '',
`lev` int(10) NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`alias` varchar(255) NOT NULL default '',
`template` varchar(255) NOT NULL default '',
`mr_title` varchar(255) NOT NULL default '',
`browser_title` varchar(255) NOT NULL default '',
`keyword` text NOT NULL,
`sitedesc` text NOT NULL,
`link` varchar(255) NOT NULL default '',
`home` tinyint(1) NOT NULL default '0',
`publish` tinyint(1) NOT NULL default '0',
`langdef` tinyint(1) NOT NULL default '0',
`show_in_menu` tinyint(1) NOT NULL default '1',
`show_in_macromenu` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`idArea`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
This type of issue comes up time and again. Has anyone installed this clean and had it run out of the box? Orif you have had to tweak it, what tweaks and mods have you done or had to do to make it work? Sorry if I'm missing the obvious, I hate when that happens. Any help is appreciated though.
Thanks!
garf








