JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
let cms do header/title on /contact
[wfpl-cms.git] / config.php
1 <?php
2
3 # This file should be run automatically by wfpl_main.php
4
5 # Settings
6 define('WFPL_DB', 'fixme');
7 define('WFPL_DB_USER', 'fixme');
8 define('WFPL_DB_PASS', 'fixme');
9 # CMS login passwords are stored in the database. See admin_users.php
10 date_default_timezone_set('America/New_York');
11
12 # Enable features, auto-includes
13 require_once(DOCROOT . 'inc/wfpl/format.php');
14 require_once(DOCROOT . 'inc/wfpl/db.php');
15 require_once(DOCROOT . 'inc/wfpl/session_messages.php');
16 require_once(DOCROOT . 'inc/session_auth.php');
17 require_once(DOCROOT . 'inc/cms.php');
18 require_once(DOCROOT . 'inc/misc.php');
19
20 # Connect to the database
21 db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);