-updated to use new database name, login and passwd (all 3 are "airtime"). You may delete old database by typing "dropdb -U campcaster -h localhost campcaster"

This commit is contained in:
mkonecny 2011-01-05 19:05:57 -05:00
parent 4739fd3d18
commit 7e96572aee
6 changed files with 14 additions and 14 deletions

View file

@ -238,11 +238,11 @@ if ($DEBUG_IMPORT) {
$testonly = false;
$importMode = "link";
$files = array("/path/to/your/test/file.mp3");
$dsn = array('username' => 'campcaster',
'password' => 'campcaster',
$dsn = array('username' => 'airtime',
'password' => 'airtime',
'hostspec' => 'localhost',
'phptype' => 'pgsql',
'database' => 'campcaster');
'database' => 'airtime');
} else {
$dsn = $CC_CONFIG['dsn'];
}