Summary:
MySQL error during installation (if MySQL version is higher then 5.0)
Detailed Description:
Hi.
If you try to install the Gallery module on MySQL 5.1 or higher you will get the
following error: ERROR: Table 'dbname.module_gallery_templateprops' doesn't
exist.
This happens because of incorrect MySQL engine type definition. Currently the
type is specified as 'TYPE=MyISAM' (file: method.install.php, line: 34). But the
TYPE keyword support was dropped since MySQL 5.1. So, the CREATE TABLE query is
incorrect because of TYPE usage.
The fix is very simple. It is necessary to replace TYPE with ENGINE. This
keyword is supported in all MySQL versions.