/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/framework/base/CErrorHandler.php(214)
202 'code'=>($exception instanceof CHttpException)?$exception->statusCode:500, 203 'type'=>get_class($exception), 204 'errorCode'=>$exception->getCode(), 205 'message'=>$exception->getMessage(), 206 'file'=>$fileName, 207 'line'=>$errorLine, 208 'trace'=>$exception->getTraceAsString(), 209 'traces'=>$trace, 210 ); 211 212 if(!headers_sent()) 213 { 214 $httpVersion=Yii::app()->request->getHttpVersion(); 215 header("HTTP/$httpVersion {$data['code']} ".$this->getHttpHeader($data['code'], get_class($exception))); 216 } 217 218 $this->renderException(); 219 } 220 else 221 $app->displayException($exception); 222 } 223 224 /** 225 * Handles the PHP error. 226 * @param CErrorEvent $event the PHP error event
| #0 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/services/HttpRequestService.php(1686): Craft\StringHelper::convertToUTF8() 1681 } 1682 } 1683 } 1684 else 1685 { 1686 $things = StringHelper::convertToUTF8($things); 1687 } 1688 1689 return $things; 1690 } 1691 |
| #1 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/services/HttpRequestService.php(1636): Craft\HttpRequestService->_utf8AllTheThings() 1631 } 1632 1633 // Looking for a specific value? 1634 if (isset($data[$name])) 1635 { 1636 return $this->_utf8AllTheThings($data[$name]); 1637 } 1638 1639 // Maybe they're looking for a nested param? 1640 if (strpos($name, '.') !== false) 1641 { |
| #2 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/services/HttpRequestService.php(414): Craft\HttpRequestService->_getParam() 409 * @return mixed The value of the corresponding query string param if a single param was requested, or $defaultValue 410 * if that value didn’t exist, or the entire $_GET array if no single param was requested. 411 */ 412 public function getQuery($name = null, $defaultValue = null) 413 { 414 return $this->_getParam($name, $defaultValue, $_GET); 415 } 416 417 /** 418 * Returns a query string parameter, or bails on the request with a 400 error if that parameter doesn’t exist. 419 * |
| #3 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/services/HttpRequestService.php(1533): Craft\HttpRequestService->getQuery() 1528 * @return string 1529 */ 1530 private function _getQueryStringPath() 1531 { 1532 $pathParam = craft()->urlManager->pathParam; 1533 return trim($this->getQuery($pathParam, ''), '/'); 1534 } 1535 1536 /** 1537 * Checks to see if this is an action or resource request. 1538 * |
| #4 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/services/HttpRequestService.php(1184): Craft\HttpRequestService->_getQueryStringPath() 1179 $pathInfo = $this->getPathInfo(); 1180 $path = $pathInfo ? $pathInfo : $this->_getQueryStringPath(); 1181 } 1182 else 1183 { 1184 $queryString = $this->_getQueryStringPath(); 1185 $path = $queryString ? $queryString : $this->getPathInfo(); 1186 } 1187 1188 // Sanitize 1189 return $this->decodePathInfo($path); |
| #5 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/services/HttpRequestService.php(131): Craft\HttpRequestService->getNormalizedPath() 126 $path = ''; 127 } 128 else 129 { 130 // Get the normalized path. 131 $path = $this->getNormalizedPath(); 132 } 133 134 // Get the path segments 135 $this->_segments = $this->_getSegments($path); 136 |
| #6 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/framework/base/CModule.php(394): Craft\HttpRequestService->init() 389 if(!isset($config['enabled']) || $config['enabled']) 390 { 391 Yii::trace("Loading \"$id\" application component",'system.CModule'); 392 unset($config['enabled']); 393 $component=Yii::createComponent($config); 394 $component->init(); 395 return $this->_components[$id]=$component; 396 } 397 } 398 } 399 |
| #7 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/etc/web/WebApp.php(596): CModule->getComponent() 591 { 592 $dbConnection = $this->asa('AppBehavior')->createDbConnection(); 593 $this->setComponent('db', $dbConnection); 594 } 595 596 $component = parent::getComponent($id, true); 597 $this->_attachEventListeners($id); 598 } 599 600 return $component; 601 } |
| #8 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/framework/base/CModule.php(103): Craft\WebApp->getComponent() 098 * @return mixed the named property value 099 */ 100 public function __get($name) 101 { 102 if($this->hasComponent($name)) 103 return $this->getComponent($name); 104 else 105 return parent::__get($name); 106 } 107 108 /** |
| #9 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/framework/base/CErrorHandler.php(214): CModule->__get() 209 'traces'=>$trace, 210 ); 211 212 if(!headers_sent()) 213 { 214 $httpVersion=Yii::app()->request->getHttpVersion(); 215 header("HTTP/$httpVersion {$data['code']} ".$this->getHttpHeader($data['code'], get_class($exception))); 216 } 217 218 $this->renderException(); 219 } |
| #10 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/etc/errors/ErrorHandler.php(145): CErrorHandler->handleException() 140 { 141 $this->handleDbConnectionError($exception); 142 } 143 else 144 { 145 parent::handleException($exception); 146 } 147 } 148 149 /** 150 * Handles a PHP error. |
| #11 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/framework/base/CErrorHandler.php(131): Craft\ErrorHandler->handleException() 126 } 127 } 128 } 129 130 if($event instanceof CExceptionEvent) 131 $this->handleException($event->exception); 132 else // CErrorEvent 133 $this->handleError($event); 134 } 135 136 /** |
| #12 |
+
–
/var/www/vhosts/cloudberrycreative.com/staging.playbook.cloudberrycreative.com/craft/app/framework/base/CApplication.php(750): CErrorHandler->handle() 745 $this->onException($event); 746 if(!$event->handled) 747 { 748 // try an error handler 749 if(($handler=$this->getErrorHandler())!==null) 750 $handler->handle($event); 751 else 752 $this->displayException($exception); 753 } 754 } 755 catch(Exception $e) |
| #13 |
unknown(0): CApplication->handleException()
|