aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/config.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/poche/config.inc.php')
-rw-r--r--inc/poche/config.inc.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/inc/poche/config.inc.php b/inc/poche/config.inc.php
index 834b18ea..ef2f699d 100644
--- a/inc/poche/config.inc.php
+++ b/inc/poche/config.inc.php
@@ -8,6 +8,14 @@
8 * @license http://www.wtfpl.net/ see COPYING file 8 * @license http://www.wtfpl.net/ see COPYING file
9 */ 9 */
10 10
11# storage
12define ('STORAGE','postgres'); # postgres, mysql, sqlite
13define ('STORAGE_SERVER', 'localhost'); # leave blank for sqlite
14define ('STORAGE_DB', 'poche'); # only for postgres & mysql
15define ('STORAGE_SQLITE', './db/poche.sqlite');
16define ('STORAGE_USER', 'postgres'); # leave blank for sqlite
17define ('STORAGE_PASSWORD', 'postgres'); # leave blank for sqlite
18
11define ('POCHE_VERSION', '1.0-beta'); 19define ('POCHE_VERSION', '1.0-beta');
12define ('MODE_DEMO', FALSE); 20define ('MODE_DEMO', FALSE);
13define ('DEBUG_POCHE', TRUE); 21define ('DEBUG_POCHE', TRUE);
@@ -24,7 +32,6 @@ define ('CACHE', './cache');
24define ('LANG', 'en_EN.UTF8'); 32define ('LANG', 'en_EN.UTF8');
25define ('PAGINATION', '10'); 33define ('PAGINATION', '10');
26define ('THEME', 'light'); 34define ('THEME', 'light');
27define ('STORAGE','postgres'); # postgres, mysql, sqlite
28 35
29# /!\ Be careful if you change the lines below /!\ 36# /!\ Be careful if you change the lines below /!\
30require_once './inc/poche/User.class.php'; 37require_once './inc/poche/User.class.php';