JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
generic editable site
[wfpl-cms.git] / code / config.php
diff --git a/code/config.php b/code/config.php
new file mode 100644 (file)
index 0000000..39900ee
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+define('WFPL_DB', 'fixme');
+define('WFPL_DB_USER', 'fixme');
+define('WFPL_DB_PASS', 'fixme');
+define('CMS_ADMIN_USER', 'fixme');
+define('CMS_ADMIN_PASS', '98fd71615b073b75810f4ed40d4538198c6450cc');
+# To change the cms admin password to "secret" run this command:
+#    echo '<?php print(sha1("secret"));' | php
+# And replace the hash above with its output
+
+
+
+require_once('code/wfpl/format.php');
+require_once('code/wfpl/db.php');
+require_once('code/wfpl/session_messages.php');
+require_once('code/cms.php');
+
+db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);