Hi wbaileynzl,
I have been emailing Janusz with any details I can find and I think it's been tracked down to an sql setup file glitch.
I have used en_GB-general.sql to setup my companies, so I don't know if the fix below applies yet.
Janusz recommends this fix:
I think we have finally found the problem. Probably you haven't tax_types
table created in your database.
We had a bug in en_US-new.sql which caused error during installation when
example data option was not selected. Unfortunately because of another issue in Create/Update companies page company with broken database was created and the error message is only displayed by the moment.
You can repair your database structure by removing invalid sales_order, sales_order_details, refs records and recreating tax_types table with:
CREATE TABLE `0_tax_types` (
`id` int(11) NOT NULL auto_increment,
`rate` double NOT NULL default '0',
`sales_gl_code` varchar(11) NOT NULL default '',
`purchasing_gl_code` varchar(11) NOT NULL default '',
`name` varchar(60) NOT NULL default '',
`inactive` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
I think you log in to mysql with root password, choose the database for FA then run the above command, I need more advice before I attempt it.