I just installed Version: v1.3.2 of stripe payments module and kept getting errors with the db query in stripepay.php. I had to change
TYPE=MyISAM AUTO_INCREMENT=1 ;
to
) ENGINE=MyISAM AUTO_INCREMENT=1;
I don't recall what the exact error was, but it was preventing this query
"$db->Execute("CREATE TABLE IF NOT EXISTS `stripe_data` ( ... "
in stripepay.php from executing. Changing the TYPE= to ENGINE= at the end of the query fixed it.
From the documentation on the net, I got this:
"
Type has been replaced with engine.
TYPE keyword is depreciated (since 5.0) and not supported in MySQL5.5 (and I think even 5.1). Instead of TYPE keyword use ENGINE keyword."
My database info is:
Server type: MySQL
Server version: 5.6.16 - Source distribution
Protocol version: 10
Bookmarks