2011-02-23, 03:54 AM
(2011-02-20, 06:59 PM)Alex Smith Wrote: G33K first of great plugin . Just to let you know though with MySQL 5.5 an error gets thrown at people when they try to activate it. Mainly due to MyISAM not being the default table type anymore. However it's easy to correct.
In /inc/plugin/regsecureq.php you just need to change line 73 from
) Type=MyISAM;");
To
) ENGINE=MyISAM;");
Yes I am aware of this and have fixed it in my internal repositories and will release it soon.
FYI, its not because MyISAM is not the default table but its because starting from MySQL 5.5 "TYPE" has been dropped so "ENGINE" has to be used.