6
I discovered that the session table usually has this structure:
sess_id varchar(32) NOT NULL default '',
sess_updated int(10) unsigned NOT NULL default '0', sess_ip varchar(15) NOT NULL default '',
sess_data text NOT NULL
However mine has this structure:
sess_id varchar(32) NOT NULL default '',
sess_updated int(10) unsigned NOT NULL default '0',
sess_ip varchar(15) NOT NULL default '',
sess_data text NOT NULL,
member_name varchar(64) NOT NULL default '',
member_id mediumint(8) NOT NULL default '0',
browser varchar(64) NOT NULL default '',
login_type tinyint(1) NOT NULL default '0',
location varchar(40) NOT NULL default '',
member_group smallint(3) NOT NULL default '0',
in_forum smallint(5) NOT NULL default '0',
in_topic int(10) NOT NULL default '0',
Is this normal ? Does some process within the XOOPs core add these columns ?
Or were they added by another module ? I am running IPB v1.4a perhaps that added them.
Can anyone shed some light on this table and the associated error ? Or atleast point me towards the code that is calling this table so I can amend it given my seemingly non-standard table structure.
Thanks !
Amok