Screenshots of the errors?
hummm, not sure I can post screenshots but I could reproduce the call stacks.
this is lonny's module call stack:
CREATE TABLE logdforum (`id` int(11) NOT NULL auto_increment,`postdate` datetime NOT NULL default '0000-00-00 00:00:00',`newpostdate` datetime NOT NULL default '0000-00-00 00:00:00',`author` text NOT NULL,`parent` int(11) NOT NULL default '0',`replies` int(11) NOT NULL default '0',`userid` int(11) NOT NULL default '0',`title` varchar(100) NOT NULL default '',`category` int(11) NOT NULL default '0',`content` text NOT NULL,PRIMARY KEY (`id`)) TYPE=MyISAM;
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 1
Call Stack:
1: db_query("CREATE TABLE logdforum (`...") called from /home/savmor/public_html/modules/forum.php on line 56
2: forum_install() called from /home/savmor/public_html/lib/modules.php on line 111
3: injectmodule("forum", true) called from /home/savmor/public_html/modules.php on line 70
here is Mighty E's blog call stack...
CREATE TABLE mod_mightyblogs (
blogid int(11) unsigned NOT NULL auto_increment,
author int(11) unsigned NOT NULL default '1' ,
date datetime NOT NULL ,
subject varchar(255) NOT NULL ,
body text NOT NULL ,
hits int(11) unsigned NOT NULL default '0' ,
PRIMARY KEY (blogid),
KEY date (date),
KEY author (author)) Type=INNODB
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Type=INNODB' at line 10
Call Stack:
1: db_query("CREATE TABLE mod_mightybl...") called from /home/savmor/public_html/lib/tabledescriptor.php on line 24
2: synctable("mod_mightyblogs", Array(
"blogid"=>Array(
"name"=>"blogid", "type"=>"int(11) unsigned", "extra"=>"auto_increment"
), "author"=>Array(
"name"=>"author", "type"=>"int(11) unsigned", "default"=>"1"
), "date"=>Array(
"name"=>"date", "type"=>"datetime"
), "subject"=>Array(
"name"=>"subject", "type"=>"varchar(255)"
), "body"=>Array(
"name"=>"body", "type"=>"text"
), "hits"=>Array(
"name"=>"hits", "type"=>"int(11) unsigned", "default"=>"0"
), "key-PRIMARY"=>Array(
"name"=>"PRIMARY", "type"=>"primary key", "unique"=>"1", "columns"=>"blogid"
), "index-date"=>Array(
"name"=>"date", "type"=>"index", "columns"=>"date"
), "index-author"=>Array(
"name"=>"author", "type"=>"index", "columns"=>"author"
)
), true) called from /home/savmor/public_html/modules/mightyblogs.php on line 49
3: mightyblogs_install() called from /home/savmor/public_html/lib/modules.php on line 1327
4: install_module("mightyblogs") called from /home/savmor/public_html/modules.php on line 42