Same thing here. Upped execution time to 3600, along with memory. I'm getting a blank page with PHP5, Joomla 1.5 and both build 718 and 722.
When I get lucky enough to get it to install (apparently partially but enough to show control panel and work fine otherwise) it shows this error at the bottom of the fireboard control panel:
| Code: |
Warning: Could not load latest Version record.nDB function failed with error number 1146
Table 'myusername_mydatabase.jos_fb_version' doesn't exist SQL=SELECT `version`, `versiondate`, `installdate`, `build`, `versionname` FROM `jos_fb_version` ORDER BY `id`
DESC LIMIT 1;
SQL =
SELECT
`version`,
`versiondate`,
`installdate`,
`build`,
`versionname`
FROM `jos_fb_version`
ORDER BY `id` DESC LIMIT 1;
in /home/myusername/public_html/components/com_fireboard/sources/fb_debug.php on line 52
|
I was told it should do this:
EDIT by fxstein: Please do not create that table manually. This is not a work around and simply hides a different problem. It invalidates the install and will cause various problems and can render portions of the system unuseable THX!
| Code: |
CREATE TABLE `jos_fb_version`
(`id` INTEGER NOT NULL AUTO_INCREMENT,
`version` VARCHAR(20) NOT NULL,
`versiondate` DATE NOT NULL,
`installdate` DATE NOT NULL,
`build` VARCHAR(20) NOT NULL,
`versionname` VARCHAR(40) NULL,
PRIMARY KEY(`id`));
|
Apparently this is only a problem on Joomla 1.5. Is there a way to get a svn to just extract into the correct directories like what was done before 1.1 was obsoletisized? <- new word. I don't know if this error is the cause of the blank page error with 1.5.7 install, but thought it might be worth mentioning.