25 lines
692 B
PHP
25 lines
692 B
PHP
<?php
|
|
session_start();
|
|
require_once '../conf.php';
|
|
require_once 'DB.php';
|
|
require_once '../../../storageServer/var/GreenBox.php';
|
|
|
|
#PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_WARNING);
|
|
#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');
|
|
PEAR::setErrorHandling(PEAR_ERROR_RETURN);
|
|
#PEAR::setErrorHandling(PEAR_ERROR_PRINT);
|
|
|
|
function errCallBack($err)
|
|
{
|
|
echo "<pre>gm:\n".$err->getMessage()."\ndi:\n".$err->getDebugInfo()."\nui:\n".$err->getUserInfo()."\n";
|
|
echo "<hr>BackTrace:\n";
|
|
print_r($err->backtrace);
|
|
echo "</pre>\n";
|
|
exit;
|
|
}
|
|
|
|
$dbc = DB::connect($config['dsn'], TRUE);
|
|
$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
|
|
$gb = &new GreenBox(&$dbc, $config);
|
|
|
|
?>
|