Need help guys.
New install on OSC 2.2 RC2a
Ran the new install SQL file with this result.
###########################################################################
# CANADA POST SHIPPING MODULE DB QUERIES
###########################################################################
# Canada Post Shipping Module with dimensions using osCommerce stored units
ALTER TABLE products ADD products_length DECIMAL( 6, 2 ) DEFAULT '12' NOT NULL AFTER products_dim_type,
ADD products_width DECIMAL( 6, 2 ) DEFAULT '12' NOT NULL AFTER products_length,
ADD products_height DECIMAL( 6, 2 ) DEFAULT '12' NOT NULL AFTER products_width,
ADD products_ready_to_ship ENUM( '0', '1' ) NOT NULL default '0' AFTER products_height;
MySQL said: Documentation
#1054 - Unknown column 'products_dim_type' in 'products'
If you do all the mods then activate Canada Post with in the Admin, here is the error code from the shopping cart.
1054 - Unknown column 'p.products_length' in 'field list'
select p.products_id, pd.products_name, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_length, p.products_width, p.products_height, p.products_ready_to_ship, p.products_tax_class_id from products p, products_description pd where p.products_id = '51' and pd.products_id = p.products_id and pd.language_id = '1'
[TEP STOP]
Where do I go, only know enough to be dangerous.
Thanks,
Shane