zbert
23-08-04, 05:39 AM
There is an error during the admin insert into the user table. Field count doesn't match. It looks like the following field has been added to the user table which makes the the number of fields 26:
`user_contact` int(11) NOT NULL default '0',
It doesn't look like the Insert statement accounts for this field as there are only 25 values being inserted.
I'm not sure what the user_contact is used for but you can fix the installation problem by adding an integer value after the user_id value like so:
INSERT INTO `users` VALUES (1,12345,'admin',...
--zbert
`user_contact` int(11) NOT NULL default '0',
It doesn't look like the Insert statement accounts for this field as there are only 25 values being inserted.
I'm not sure what the user_contact is used for but you can fix the installation problem by adding an integer value after the user_id value like so:
INSERT INTO `users` VALUES (1,12345,'admin',...
--zbert