Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

garyw74

Archived
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Real Name
    Gary

garyw74's Achievements

  1. Yes, that makes sense but, This is the only thing we are told to add to application_top.php // define the database table names used in the newsletters project define('TABLE_SUBSCRIBERS', 'subscribers');
  2. After installing this contribution I recieve the following error from the admin section: 1146 - Table 'catalog.TABLE_NEWSLETTERS' doesn't exist select count(*) as total from TABLE_NEWSLETTERS where module = 'newsletter_subscribers' I have had a look through the sql file that was included, and their is no mention of a Table called Newsletters. Has this been left out or have a done something wrong Thanks in advance
  3. After installing this contribution I recieve the following error from the admin section: 1146 - Table 'catalog.TABLE_NEWSLETTERS' doesn't exist select count(*) as total from TABLE_NEWSLETTERS where module = 'newsletter_subscribers' I have had a look through the sql file that was included, and their is no mention of a Table called Newsletters. Has this been left out or have a done something wrong Thanks in advance
  4. Fixed the database error. but...... The wishlist box now doesnt display on the page and when you click on add to wishlist it adds the item to the shopping cart.........
  5. Thanks yup, done that, that seems to of eliminated one error message, any clues on the database error ?? 1146 - Table 'catalog.wishlist_products' doesn't exist select * from wishlist_products WHERE customers_id=175 [TEP STOP] This is the sql file contents CREATE TABLE customers_wishlist ( products_id int(13) NOT NULL default '0', customers_id int(13) NOT NULL default '0', products_model varchar(13) default NULL, products_name varchar(64) NOT NULL default '', products_price decimal(8,2) NOT NULL default '0.00', final_price decimal(8,2) NOT NULL default '0.00', products_quantity int(2) NOT NULL default '0', wishlist_name varchar(64) default NULL ) TYPE=MyISAM;
  6. I keep running into problems with this, can anyone point me in the right direction. 1) In the instructions is ask to add the following line to column_right.php:- //added for wishlist if (tep_session_is_registered('customer_id')) include(DIR_WS_BOXES . 'wishlist_history.php') I THINK THIS SHOULD BE :-- //added for wishlist if (tep_session_is_registered('customer_id')) include (DIR_WS_BOXES . 'wishlist.php') 2) Also after adding the sql file to my database I get the following error when running the contribution: 1146 - Table 'catalog.wishlist_products' doesn't exist select * from wishlist_products WHERE customers_id=175 [TEP STOP] Is their another typo somewhere or am I missing something Thanks in advance
×
×
  • Create New...