creating database problem
Posted: Wed Feb 16, 2005 8:01 am
The server my website is hosted at is a shared server, which means I'm not user root. This is somewhat of a problem, since I need to create a database like this:
Any ideas??
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??