[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("getAll", array(1))
NonConnectedDb::getAll("SELECT "offer_id",…")app/lib/BannerController.php : 36
0033:         $ds->whiteList(array('offer_id','name_'.$lang, 'offer_text_'.$lang, 'offer_picture'));
0034:         $ds->filter(" active=true ");
0035:         $ds->order($ds->getField('offer_start'));
0036:         $offers = g()->db->getAll($ds->query());
0037:         
0038:         if(!empty($offers))
0039:         { 
BannerController::defaultAction(array(0))mus/hg/lib/HologramCore.php : 2120
2117:         if (method_exists($this,"onAction"))
2118:             if (false === $this->onAction($this->__action, $this->__params))
2119:                 return(true);
2120:         return $this->$action($this->__params);
2121:     }
2122:     
2123:     
Component::launchDefaultAction()mus/hg/lib/HologramCore.php : 2135
2132:     {
2133:         if (!$req->dive())
2134:         {
2135:             $this->launchDefaultAction();
2136:             return;
2137:         }
2138:         
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("b", 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.