added hints how to specify a port for the database connection
This commit is contained in:
parent
b9b047f2af
commit
a9b948d6f9
4 changed files with 22 additions and 6 deletions
|
@ -82,6 +82,8 @@ Restart mysql and you should be fine.
|
|||
Point your web browser to the new site and follow the instructions.
|
||||
Please note any error messages and correct these before continuing.
|
||||
|
||||
If you need to specify a port for the connection to the database, you can do so in the host name setting for the database.
|
||||
|
||||
*If* the automated installation fails for any reason, check the following:
|
||||
|
||||
* Does ".htconfig.php" exist? If not, edit htconfig.php and change the system settings. Rename to .htconfig.php
|
||||
|
|
|
@ -117,3 +117,10 @@ If more then one account should be able to access the admin panel, seperate the
|
|||
If you want to have a more personalized closing line for the notification emails you can set a variable for the admin_name.
|
||||
|
||||
$a->config['admin_name'] = "Marvin";
|
||||
|
||||
## Database Settings
|
||||
|
||||
The configuration variables db_host, db_user, db_pass and db_data are holding your credentials for the database connection.
|
||||
If you need to specify a port to access the database, you can do so by appending ":portnumber" to the db_host variable.
|
||||
|
||||
$db_host = 'your.mysqlhost.com:123456';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue