View Single Post
  #79  
Old 05-05-2005, 12:02 AM
 
clubsrefinished clubsrefinished is offline
 

Member
  
Join Date: Dec 2004
Location: West Midlands, UK
Posts: 15
 

Default

Hi,

I have sorted out what the problem was. The original post had an extra comma in the code that was causing the problem therefore

Code:
CREATE TABLE xcart_notify ( email char(128) NOT NULL , productid int(11) NOT NULL , KEY email_proudct (email, productid), ) TYPE=MyISAM;

should read

Code:
CREATE TABLE xcart_notify ( email char(128) NOT NULL , productid int(11) NOT NULL , KEY email_proudct (email, productid) ) TYPE=MyISAM;

I can confirm that I followed all of the instructions listed in this thread and this mod works great for me.

A huge token of thanks needs to go to shisapipe for updating funkydunk's original code so well.
__________________
Mike
--------------
Version: 4.0.11 Live, RMA, AOM & X-Affiliate
PHP 4.3.4
MySQL server 3.23.58
MySQL client 3.23.58
Web server Apache/1.3.29 (Unix)

Site: http://www.clubsrefinished.co.uk
Reply With Quote