[NOTICE] Undefined index: page
what?
(try to mouseover class name)
where?
(try clicking)
(error happened here)
()
app/lib/SpecialOffersController.php : 156
0153:     public function actionAll(array $params)
0154:     {
0155:         $ds = g('SpecialOffers', 'model');
0156:         if(g('Functions')->isInt($params['page']) && $params['page'] > 0)
0157:             $page = $params['page'];
0158:         else
0159:             $page = 1;
(if you'd be worning in local environment, you could view context here)
SpecialOffersController::actionAll(array(0))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, "All")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: 
[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("getOne", array(1))
NonConnectedDb::getOne("SELECT COUNT(1) FROM…")mus/hg/lib/DataSets.php : 151
0148:         $sql = "SELECT COUNT(1)\nFROM\n     ".$this->generator()."  ";
0149:         if ($this->__filter) 
0150:             $sql .= "\nWHERE\n  ".$this->__filter->generator();        
0151: 		$this->__count = g()->db->getOne($sql);
0152: 		return($this->__count);
0153:     }
0154: 	
DataSet::getCount()app/lib/SpecialOffersController.php : 165
0162:             $ds->filter(array('active'=>'true'));
0163:         
0164:         $perpage = g()->conf['pagination']['special_offers'];
0165:         $cnt = $ds->getCount();    
0166:         $page_info = g('Functions')->selectPage($cnt, $perpage, $page, null);
0167:         $ds->setMargins($page_info['offset'], $page_info['offset']+$perpage);
0168:         $ds->order($ds->getField('offer_start'));
SpecialOffersController::actionAll(array(0))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, "All")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.