creating database problem

Help with getting the CMS CORE package up and running. This does not include 3rd party modules, PHP scripts, anything downloaded via module manager or from any external source.
Locked
Robin

creating database problem

Post by Robin »

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:
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
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.

Any ideas??
Robin

creating database problem

Post by Robin »

Patricia wrote:yes you can do like this:

create robin_cms as a new database
the config file is blank before install, try pointing to
[yourinstallfolder]/install/install.php if it doesn't redirect automatically

in database info, enter robin_cms as database name, and your usual database username and password, this work even on a shared environement (I have one install in this same situation)

Cheers and do not hesitate to ask more in case of need :)
Oh right, thank you so much. I get it now. You've been a great help.
Robin

creating database problem

Post by Robin »

One last question, what do I have to do when it says:
Warning: install directory still exists. Please remove it completely.
Do I have to remove the entire admin directory with its contents?? That seems like a bad idea.
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm

creating database problem

Post by Ted »

Not the admin directory, the install directory. doc_root/install
Robin

creating database problem

Post by Robin »

wishy wrote:Not the admin directory, the install directory. doc_root/install
Oh right, that makes more sense.
Locked

Return to “[locked] Installation, Setup and Upgrade”