well, something has modified the structure of your configuration_group table.
To work around that, you'll need to modify the pdfoc.sql file:
change this:
Code:
#NEXT_X_ROWS_AS_ONE_COMMAND:2
INSERT INTO configuration_group
VALUES ('', 'PDF Order Center', 'User-customizable defaults for PDF Order Center.', @sortorder+1, 1);
to this:
Code:
#NEXT_X_ROWS_AS_ONE_COMMAND:2
INSERT INTO configuration_group (configuration_group_title, configuration_group_description, sort_order, visible)
VALUES ('PDF Order Center', 'User-customizable defaults for PDF Order Center.', @sortorder+1, 1);
Also, since you've already run the commands earlier in the file, you'll need to REMOVE this part from the top of the file before you run it again to finish installation:
Code:
#NEXT_X_ROWS_AS_ONE_COMMAND:
CREATE TABLE orders_invoices (
orders_invoices_id int(11) NOT NULL auto_increment,
invoice_date datetime NOT NULL default '0000-00-00 00:00:00',
order_tax decimal(15,4) NOT NULL default '0.0000',
order_total decimal(15,4) NOT NULL default '0.0000',
invoice_type char(2) NOT NULL default '',
orders_id int(11) NOT NULL default '0',
PRIMARY KEY (orders_invoices_id)
) TYPE=MyISAM ;