Ok, this worked for me...
Make sure you've uninstalled any previous component fireboard that wasn't installed correctly and doublecheck under /components/ and administrator/components that there are no com_fireboard folders. If there are delete them.
try myPHPadmin or however you edit your database. (Backup first as usual.) Choose the database you're using in left panel. Click on 'SQL' tab. Paste 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`));
|
Press 'GO' button.
Now try to install FB 1.0.5 latest version.
Previous post for version insert was incorrect, editing it now to correct code.