|
The database host, I assume, is the URL of the MySQL server. This is a safe assumption since in most SSL's you need to specify the system the MySQL server is on, even if it is on the same machine as your code. In such a case, the database host is "localhost" for Windows machines, "127.0.0.1" for Linux machines, or an equivalent reflexive.
The username and password are the login data for MySQL's administrator. The default username is "root" and it will have full privileges. The forum software will attempt to connect to MySQL, to retrieve and edit data, using this information. This is not the login information for your forum account. Please remember to set the correct Privileges on your MySQL account or it will not be allowed to modify anything and you will get lots of errors.
A "MySQL database" is actually made of several databases; the database name is the name of the one database that holds all of the tables for your forum to store posts, threads, etc. You would make a new database in MySQL and call it, say, "forum". Then in the forum setup, you would tell it that the database name to use is "forum", and it will set up all of its tables in that database.
This post has been edited by Draco Icebane on Jul 27 2008, 11:08 PM
|