5
It sounds to me like you got a modified version of 0.8.3 - the error you are reporting indicates a problem with the database definitions for the wiwimod tables, specifically the 'body' column. The version I have does not have a default value for 'body', nor does the module I just downloaded from the wiwimod site (
http://www.zonatim.com). I, too, am using MySQL version 5.x.
If you look in /modules/wiwimod/sql and open mysql.sql with a text editor. The top of the file should look like this -
#
# Table structure for wiwimod 0.7
#
CREATE TABLE wiwimod (
id int(10) NOT NULL auto_increment,
keyword varchar(255) NOT NULL default '',
title varchar(255) NOT NULL default '',
[color=ff0000]body text NOT NULL default '',[/color]
lastmodified datetime NOT NULL default '0000-00-00 00:00:00',
u_id int(10) NOT NULL default '0',
visible int(3) default '0',
contextBlock varchar(255) default '',
parent varchar(255) default '',
pageid int(10) default '0',
prid integer default '0',
PRIMARY KEY (id)
) TYPE=MyISAM;
If your file looks the same as this, I would try removing the
default '' from the file, saving it, then trying the install again.
Let us know how this turns out.
I am glad you have been able to follow the startup guide to this point.