JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
remove obsolete type="text/javascript" from script tags
[wfpl-cms.git] / config.php
1 <?php
2
3 # Settings
4 define('WFPL_DB', 'fixme');
5 define('WFPL_DB_USER', 'fixme');
6 define('WFPL_DB_PASS', 'fixme');
7 # CMS login passwords are stored in the database. See admin_admins.php
8 date_default_timezone_set('America/New_York');
9
10 # Enable features, auto-includes
11 require_once(INC_WFPL . 'format.php');
12 require_once(INC_WFPL . 'db.php');
13 require_once(INC_WFPL . 'session_messages.php');
14 require_once(__DIR__.'/'.'inc/cms.php');
15
16 # Connect to the database
17 db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);
18
19 # Load the requested page (php and/or html)
20 require_once(INC_WFPL . 'main.php');
21 wfpl_main();