-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfig.php.example
29 lines (25 loc) · 950 Bytes
/
config.php.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
# CONFIGURATION FILE FOR GATHERLING
# CHANGE THE FOLLOWING VARIABLES
#
# AND MAKE THE FILE UNREADABLE BY HTACCESS!
#
# === Database ===
$CONFIG['db_hostname'] = 'localhost';
$CONFIG['db_username'] = 'username';
$CONFIG['db_password'] = 'password';
$CONFIG['db_database'] = 'gatherling';
# === Website ===
# The base url where gatherling is installed.
$CONFIG['base_url'] = "http://website.com/gatherling";
# The name of your site. This is used in a lot of places.
$CONFIG['site_name'] = "website name";
# The Style of the site.
$CONFIG['style'] = "default";
# A description for the ical calendar which is accessible at calendar.php
$CONFIG['calendar_description'] = "a description for the events calendar";
# === Infobot PARAMETERS ==
# If you have set it up with infobot to contact the site, you can change the passkey here.
# If you haven't set it up with infobot, leave this blank.
$CONFIG['infobot_passkey'] = "";
# THAT'S ALL FOLKS!