Guest Posted March 6, 2006 Posted March 6, 2006 I get the below error when I click checkout, then every other page after that point. 1146 - Table 'petcals_osc1.TABLE_PRODUCTS_SHIPPING' doesn't exist select products_ship_price, products_ship_price_two, products_ship_zip, products_ship_methods_id from TABLE_PRODUCTS_SHIPPING where products_id = '31' [TEP STOP] Please help, what must I change? How do I just get rid of it, I think it is a module I added, worked fine, now it doesnt? Here is the code I have for the table -- -- Table structure for table `products_shipping` -- CREATE TABLE `products_shipping` ( `products_id` int(11) NOT NULL default '0', `products_ship_methods_id` int(11) default NULL, `products_ship_zip` varchar(32) default NULL, `products_ship_price` varchar(10) default NULL, `products_ship_price_two` varchar(10) default NULL ) TYPE=MyISAM; -- -- Dumping data for table `products_shipping` -- My SQL error with shipping Please help no clue what happened? I get the below error when I click checkout, then every other page after that point. 1146 - Table 'petcals_osc1.TABLE_PRODUCTS_SHIPPING' doesn't exist select products_ship_price, products_ship_price_two, products_ship_zip, products_ship_methods_id from TABLE_PRODUCTS_SHIPPING where products_id = '31' [TEP STOP] Please help, what must I change? How do I just get rid of it, I think it is a module I added, worked fine, now it doesnt? Here is the code I have for the table -- -- Table structure for table `products_shipping` -- CREATE TABLE `products_shipping` ( `products_id` int(11) NOT NULL default '0', `products_ship_methods_id` int(11) default NULL, `products_ship_zip` varchar(32) default NULL, `products_ship_price` varchar(10) default NULL, `products_ship_price_two` varchar(10) default NULL ) TYPE=MyISAM; -- -- Dumping data for table `products_shipping` --
kgt Posted March 6, 2006 Posted March 6, 2006 Add define( 'TABLE_PRODUCTS_SHIPPING', 'products_shipping' ); to includes/database_tables.php Contributions Discount Coupon Codes Donations
Recommended Posts
Archived
This topic is now archived and is closed to further replies.