JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
generic editable site
[wfpl-cms.git] / code / config.php
1 <?php
2
3 define('WFPL_DB', 'fixme');
4 define('WFPL_DB_USER', 'fixme');
5 define('WFPL_DB_PASS', 'fixme');
6 define('CMS_ADMIN_USER', 'fixme');
7 define('CMS_ADMIN_PASS', '98fd71615b073b75810f4ed40d4538198c6450cc');
8 # To change the cms admin password to "secret" run this command:
9 #    echo '<?php print(sha1("secret"));' | php
10 # And replace the hash above with its output
11
12
13
14 require_once('code/wfpl/format.php');
15 require_once('code/wfpl/db.php');
16 require_once('code/wfpl/session_messages.php');
17 require_once('code/cms.php');
18
19 db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);