summaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'config.php')
-rw-r--r--config.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/config.php b/config.php
deleted file mode 100644
index cd00072a6..000000000
--- a/config.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-if (!defined('MICROBLOG')) { exit(1) }
-
-$dsn = array(
- 'phptype' => 'pgsql',
- 'username' => 'someuser',
- 'password' => 'apasswd',
- 'hostspec' => 'localhost',
- 'database' => 'thedb',
- );
-
-$options = array(
- 'debug' => 2,
- 'portability' => DB_PORTABILITY_ALL,
- );
-
-$db =& DB::connect($dsn, $options);
-if (PEAR::isError($db)) {
- die($db->getMessage());
-}
-
-$config['db'] =
- array( 'username' => 'stoica',
- 'password' => 'replaceme',
-