Quote:
Originally posted by Nam
Thanks guys, I still haven't figured out yet, may be this question is so stupid that nobody bother to help.
I did try telnet, and it did ask my password, but my question is, what directory that created database would go to? How to link?
I've seen other webhosting that allow you to create mySQL in their control pannel, is that right? I think that is much easier than telnet, which I don't know much about it.
|
Ok, so you have a db, and a password now correct? You don't really have to worry about where it is. Now, you don't link to it- rahter you configure whatever it is that you are going to use the db for.
My vBulletin uses a config file something like this:
// only mysql is supported at the moment
$dbservertype="mysql";
// hostname or ip of server
$servername="localhost";
// username and password to log onto db server
$dbusername="***yourusername***";
$dbpassword="***yourpass***";
// name of database
$dbname="***nameofdb***";