diff --git a/actions/login.php b/actions/login.php new file mode 100644 index 0000000000..a95dc9e3a3 --- /dev/null +++ b/actions/login.php @@ -0,0 +1,25 @@ + + array('name' => 'Just another µB'), + 'dsn' => + array('phptype' => 'mysql', + 'username' => 'stoica', + 'password' => 'apasswd', + 'hostspec' => 'localhost', + 'database' => 'thedb') + 'dboptions' => + array('debug' => 2, + 'portability' => DB_PORTABILITY_ALL)); + +require_once(INSTALLDIR . '/config.php'); +require_once('DB.php'); + +function common_database() { + global $config; + $db =& DB::connect($config['dsn'], $config['dboptions']); + if (PEAR::isError($db)) { + common_server_error($db->getMessage()); + } else { + return $db; + } +} + +function common_read_database() { + // XXX: read from slave server + return common_database(); +} + +function common_server_error($msg) { + header('Status: 500 Server Error'); + header('Content-type: text/plain'); + + print $msg; + exit(); +} diff --git a/config.php b/config.php new file mode 100644 index 0000000000..c178baf9c9 --- /dev/null +++ b/config.php @@ -0,0 +1,24 @@ + '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', + diff --git a/index.php b/index.php new file mode 100644 index 0000000000..d63d09edf5 --- /dev/null +++ b/index.php @@ -0,0 +1,19 @@ + \ No newline at end of file