[wikka-community] (1.3.1-rc2) Changing theme in settings triggers slq error

Brian Koontz brian
Tue Mar 15 23:54:50 GMT 2011


On Tue, Mar 15, 2011 at 09:22:27PM -0400, Victor Khangulov wrote:
> I reverted back to the sql database that I had using 1.2p1 and 
> installed the latest 1.3.1-rc1 fresh.  Then when you came out with 
> the 1.3.1-rc2, I copied the files without reverting the database 
> back.  If you say it is working then may be I am executing things in 
> some different sequence than you are.  What is the field (type and 
> length) that I need to make in the database for this to work?

Here's the schema:

CREATE TABLE `wikka_users` (
  `name` varchar(75) NOT NULL DEFAULT '',
  `password` varchar(32) NOT NULL DEFAULT '',
  `email` varchar(50) NOT NULL DEFAULT '',
  `revisioncount` int(10) unsigned NOT NULL DEFAULT '20',
  `changescount` int(10) unsigned NOT NULL DEFAULT '50',
  `doubleclickedit` enum('Y','N') NOT NULL DEFAULT 'Y',
  `signuptime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `show_comments` enum('Y','N') NOT NULL DEFAULT 'N',
  `default_comment_display` enum('date_asc','date_desc','threaded') NOT NULL DEF
AULT 'threaded',
  `status` enum('invited','signed-up','pending','active','suspended','banned','d
eleted') DEFAULT NULL,
  `theme` varchar(50) DEFAULT '',
  `challenge` varchar(8) DEFAULT '',
  PRIMARY KEY (`name`),
  KEY `idx_signuptime` (`signuptime`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

  --Brian

-- 
Brian Koontz
Wikka Development Team
Systems Support and Random Tasking Dept.




More information about the community mailing list