Following the Open CMS installation documentation, I need to enter the following commands at the MySQL command line:
Code:
use mysql;
insert into user values ('localhost', 'opencmsuser', password('XXXXX'),\
'N','N','N','N','N','N','N','N','N','N','N','N','N','N');
insert into db values ('localhost', 'opencms', 'opencmsuser',\
'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
flush privileges;
But i get this error message: ERROR 1136 (21S01): Column count doesn't match value count at row 1
(Make sure you replace opencmsuser and opencms with the name of your user and database in case you have changed them on the setup wizard.)
I read somewhere that the tables in the database might not correspond to each other. But I did a fresh installation so the documentation will surely be correct!?
I am new to MySql, so please help me with step-by-step instructions on what I shoudl do next please.