1) Table 'orders" missing Field "shipping_tax"
2) Table 'configuration' missing entry for "Edit Orders"
Run the following script into your store SQL:
ALTER TABLE orders ADD shipping_tax DECIMAL( 7, 4 ) DEFAULT '0.000' NOT NULL ;
INSERT into configuration (configuration_id, configuration_title,
configuration_key, configuration_value, configuration_description,
configuration_group_id, sort_order, last_modified, date_added,
use_function, set_function) values ('', 'Order Editor- Display Payment
Method dropdown?', 'DISPLAY_PAYMENT_METHOD_DROPDOWN', 'true', 'Display
Payment Method in Order Editor as dropdown menu (true) or as input
field (false)', '1', '21', NULL, '2006-04-02 11:51:01', NULL,
'tep_cfg_select_option(array(\'true\', \'false\'),');