I entered that into the Query window in phpmyadmin and received "Missing value in the form" message. I should also have indicated that I'm using 3.8.4 Patch Level 2...
Thanks for the quick reply!
Okay, found the fix:
CREATE TABLE `cpsession` (
`userid` int(10) unsigned NOT NULL DEFAULT '0',
`hash` varchar(32) NOT NULL DEFAULT '',
`dateline` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`userid`,`hash`)
) ENGINE=MEMORY DEFAULT CHARSET=latin1;
|