Anyway, a possible solution would be to just create a database called robin_cms, which is something I can do and then just change the config file. The only problem with that solution is that my config file is blank.3. Create the cms database and grant a user rights to use it:
- login to mysql: mysql -u root -p
create database cms;
grant all privileges on cms.* to cms_user@localhost identified by 'cms_pass';
quit
Any ideas??