Hi,
I had an issue with the system creating database tables on a web server when I tried to upgrade from version 1.1.0 to version 1.1.2 and the same when I went to install my new serial number module. I found that by changing the following line in "include/database.php" sorted out the issue.
$def_opts = array('postgres'=>' WITH OIDS','mysql' => ' TYPE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci');
to
$def_opts = array('postgres'=>' WITH OIDS','mysql' => ' TYPE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci');
Now my question is, could there be any knock effects by doing this? if not can it be made into a parameter that can be changed depending on your server?