fixing up the "is setup" check in the installer
[gwvp.git] / www / config-dist.php
1 <?php
2
3 // this config file is going to reduce down to just db connectivity - thats all
4 // all other config will be kept in the db, but not just yet
5
6 // the config file, this is as exciting as it gets really
7 // no longer valid - $repo_base = "/tmp/";
8 $lib_base = "../gwvplib/";
9 $plugin_path = "$lib_base/plugins";
10 $data_directory = "../data";
11 $db_type = "sqlite"; // could be mysql or pgsql - but not yet
12 $db_name = "$data_directory/gwvp.db"; // just a file for sqlite, for anything else is a pdo url without driver, i.e. host=localhost;dbname=whatever;user=asdf;password=asdf
13 $db_username = "";
14 $db_password = "";
15
16 ?>