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.
