aboutsummaryrefslogtreecommitdiffstats
path: root/htconfig.php
blob: cf52b396a541a9a1824fdde7efa50183bef45cd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

// Set the following for your MySQL installation
// Copy or rename this file to .htconfig.php

$db_host = 'your.mysqlhost.com';
$db_user = 'mysqlusername';
$db_pass = 'mysqlpassword';
$db_data = 'mysqldatabasename';

// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
// It can be changed later and only applies to timestamps for anonymous viewers.

$default_timezone = 'Australia/Sydney';

// What is your site name?

$a->config['sitename'] = "DFRN developer";

// At the present time you can have REGISTER_OPEN
// or REGISTER_CLOSED. But register your personal account 
// first before you close it.

$a->config['register_policy'] = REGISTER_OPEN;