[WARNING] pg_pconnect() [function.pg-pconnect]: Unable to connect to PostgreSQL server: FATAL: password authentication failed for user "hologram2"
what?
(try to mouseover class name)
where?
(try clicking)
(error happened here)
()
mus/hg/lib/HologramCore.php : 412
0409:         foreach ($connection_params as $k=>&$v)
0410:             $v = "$k='$v'";
0411:         $connection_string = implode(' ', $connection_params);
0412:         $db_resource = pg_pconnect($connection_string);
0413:         if(!$db_resource)
0414:             die("No DB connection.");
0415:         $this->_true_db = $kernel->db = new DataBase($db_resource);
(if you'd be worning in local environment, you could view context here)
pg_pconnect("host='localhost' use…")mus/hg/lib/HologramCore.php : 412
0409:         foreach ($connection_params as $k=>&$v)
0410:             $v = "$k='$v'";
0411:         $connection_string = implode(' ', $connection_params);
0412:         $db_resource = pg_pconnect($connection_string);
0413:         if(!$db_resource)
0414:             die("No DB connection.");
0415:         $this->_true_db = $kernel->db = new DataBase($db_resource);
NonConnectedDb::__call("getRow", array(1))
NonConnectedDb::getRow("SELECT "offer_id",…")app/lib/SpecialOffersController.php : 79
0076:         $ds = g('SpecialOffers', 'model');
0077:         $ds->whiteListAll();
0078:         $ds->filter(" offer_id='$id' ");
0079:         $result = g()->db->getRow($ds->query(false));
0080:         
0081:         if(!$result)
0082:         {
SpecialOffersController::actionShow(array(1))mus/hg/lib/HologramCore.php : 1490
1487:             if (method_exists($this,"onAction"))
1488:                 if (false === $this->onAction($curr, $params))
1489:                     return(true);
1490:             $this->$action($params);
1491:             return(true);
1492:         }        
1493:         return(false);
Controller::__handle(object BoxedRequest, "Show")mus/hg/lib/HologramCore.php : 2141
2138:         
2139:         while ($current = $req->next())
2140:         {
2141:             if (!$this->__handle($req,$current))
2142:                 $this->redirect('HttpErrors/Error404');
2143:         }
2144:         $req->emerge();
Component::process(object BoxedRequest)mus/hg/lib/HologramCore.php : 1470
1467:             if (false === $this->onActionRouted($current))
1468:                 return true;
1469:                 
1470:         $child->process($req);
1471:         
1472:         return(true);
1473:     }
Controller::__routeAction("so", object BoxedRequest)mus/hg/lib/PagesController.php : 26
0023:              *        with Controller::__handle()?
0024:              */
0025: 
0026:             if ($this->__routeAction($current, $req))
0027:                 continue;
0028:             //var_dump("did not route with $current");
0029:             $action = ('default'===$current)?'defaultAction':
PagesController::process(object BoxedRequest)mus/app/lib/BoxesController.php : 103
0100:             }
0101:         }
0102: 
0103:         parent::process($req);
0104:     }
0105: 
0106:     public function getPageName()
BoxesController::process(object BoxedRequest)mus/hg/lib/LibraryController.php : 45
0042:                 $this->redirect('HttpErrors/Error404');
0043:             }
0044:             $this->addChild($child);
0045:             $child->process($req);
0046:         }
0047:         $req->emerge();
0048:     }
LibraryController::process(object BoxedRequest)mus/hg/lib/HologramCore.php : 1821
1818:     
1819:     public function process(Request $req)
1820:     {
1821:         $this->_child->process($req);
1822:     }
1823:     
1824:     public function render()
TrunkController::process(object BoxedRequest)mus/hg/lib/DebugController.php : 72
0069:             $this->redirect($new_url,false);
0070:         }
0071: 
0072:         parent::process($req);
0073:     }
0074:     
0075:     
DebugController::process(object BoxedRequest)mus/hg/lib/HologramCore.php : 740
0737:                 )
0738:             );
0739:             define('BASE', $this->req->getBaseUri());
0740:             $this->first_controller->process($this->req);
0741:             if (!$this->view) // could have been set in progress
0742:             {
0743:                 if ($this->req->isAjax())
Kernel::run()app/htdocs/index.php : 84
0081: require_once(HG_DIR.'lib/HologramCore.php');
0082: $kernel = new Kernel();
0083: $forest = & $kernel;
0084: /* run, */ $forest->run();
0085: 
No DB connection.