JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
stylus helper for ckeditor sizing
[wfpl-cms.git] / config.php
index 8a52bf4..f5c078e 100644 (file)
@@ -1,17 +1,21 @@
 <?php
 
+# This file should be run automatically by wfpl_main.php
+
 # Settings
 define('WFPL_DB', 'fixme');
 define('WFPL_DB_USER', 'fixme');
 define('WFPL_DB_PASS', 'fixme');
-# CMS login passwords are stored in the database. See admin_admins.php
+# CMS login passwords are stored in the database. See admin_users.php
 date_default_timezone_set('America/New_York');
 
 # Enable features, auto-includes
-require_once(INC_WFPL . 'format.php');
-require_once(INC_WFPL . 'db.php');
-require_once(INC_WFPL . 'session_messages.php');
-require_once(__DIR__.'/'.'inc/cms.php');
+require_once(DOCROOT . 'inc/wfpl/format.php');
+require_once(DOCROOT . 'inc/wfpl/db.php');
+require_once(DOCROOT . 'inc/wfpl/session_messages.php');
+require_once(DOCROOT . 'inc/session_auth.php');
+require_once(DOCROOT . 'inc/cms.php');
+require_once(DOCROOT . 'inc/misc.php');
 
 # Connect to the database
 db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);