From: Gabriel Dunne Date: Sun, 18 Dec 2011 22:48:12 +0000 (-0800) Subject: Updated init, and README X-Git-Tag: v0.1~39 X-Git-Url: https://git.quilime.com/?a=commitdiff_plain;h=b97362f06ec082f857decc47644df2f41d39c04f;p=clmpr.git Updated init, and README --- diff --git a/README b/README index 5cec958..5126d70 100644 --- a/README +++ b/README @@ -11,10 +11,6 @@ requirements: todo (would be nice): - pagination -- tags, descriptions, other metadata - private urls - export -- have options to use another DB other than MySQL - - diff --git a/init.php b/init.php index a257800..69c75e2 100644 --- a/init.php +++ b/init.php @@ -1,22 +1,23 @@ ;dbname="); - define('DB_UNAME', ""); - define('DB_PW', ""); +# settings +define('BASE_URL', 'example.com'); +# database +define('DB_DSN', "mysql:host=;dbname="); +define('DB_UNAME', ""); +define('DB_PW', ""); - ini_set('display_errors', 1); - error_reporting( E_ALL ); +ini_set('display_errors', 1); +error_reporting( E_ALL ); - - include 'data.php'; +include 'data.php';