JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
make all require()s jumpable
[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_admins.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/cms.php');
17
18 # Connect to the database
19 db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);