Paris cruise port
PHP warning
/home/admin/web/lucky7travel.ca/public_html/cruise/protected/models/Port.php(126)
114 $criteria->compare('imagepath', $this->imagepath, true); 115 $criteria->compare('distance', $this->distance, true); 116 $criteria->compare('countryid', $this->countryid); 117 118 return new CActiveDataProvider($this, array( 119 'criteria' => $criteria, 120 )); 121 } 122 123 public static function getWeather($param) { 124 125 126 $weather = file_get_contents("http://api.openweathermap.org/data/2.5/forecast/daily?lat=35&q={$param}&appid=24b107bdbfe44ae0d247bb775757c2c1"); 127 // $weather = json_decode($weather); 128 $weatherresult = json_decode($weather); 129 if($weatherresult->cod == 404){ 130 return; 131 } 132 133 $criteria = new CDbCriteria(); 134 $criteria->compare('searchparameter', $param); 135 $criteria->compare("datecreated", date("Y-m-d")); 136 $weathercache = Weathercache::model()->findByAttributes(array(), $criteria); 137 // $city = $weather->city->name; 138 // $country = $weather->city->country;
Stack Trace
#0 |
+
–
/home/admin/web/lucky7travel.ca/public_html/cruise/protected/models/Port.php(126): file_get_contents("http://api.openweathermap.org/data/2.5/forecast/daily?lat=35&q=P...") 121 } 122 123 public static function getWeather($param) { 124 125 126 $weather = file_get_contents("http://api.openweathermap.org/data/2.5/forecast/daily?lat=35&q={$param}&appid=24b107bdbfe44ae0d247bb775757c2c1"); 127 // $weather = json_decode($weather); 128 $weatherresult = json_decode($weather); 129 if($weatherresult->cod == 404){ 130 return; 131 } |
#1 |
+
–
/home/admin/web/lucky7travel.ca/public_html/cruise/protected/controllers/CruiseController.php(108): Port::getWeather("Paris,France") 103 public function actionWeather() { 104 header('Access-Control-Allow-Origin: *'); 105 $city = str_replace(" ", "%20", $_GET['city']); 106 $country = str_replace(" ", "%20", $_GET['country']); 107 108 $weathercache = Port::getWeather($city . "," . $country); 109 110 111 if (!empty($weathercache) && !is_null($weathercache)) 112 $this->renderPartial("_weather", array('model' => $weathercache)); 113 } |
#2 |
+
–
/home/admin/web/lucky7travel.ca/public_html/framework/web/actions/CInlineAction.php(49): CruiseController->actionWeather() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#3 |
+
–
/home/admin/web/lucky7travel.ca/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("city" => "Paris", "country" => "France")) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#4 |
+
–
/home/admin/web/lucky7travel.ca/public_html/framework/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#5 |
+
–
/home/admin/web/lucky7travel.ca/public_html/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#6 |
+
–
/home/admin/web/lucky7travel.ca/public_html/framework/web/CWebApplication.php(282): CController->run("weather") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#7 |
+
–
/home/admin/web/lucky7travel.ca/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("cruise/weather") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#8 |
+
–
/home/admin/web/lucky7travel.ca/public_html/framework/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#9 |
+
–
/home/admin/web/lucky7travel.ca/public_html/cruise/index.php(13): CApplication->run() 08 defined('YII_DEBUG') or define('YII_DEBUG',true); 09 // specify how many levels of call stack should be shown in each log message 10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 11 12 require_once($yii); 13 Yii::createWebApplication($config)->run(); |
2025-03-14 07:00:38 Apache/2.2.15 (CentOS) Yii Framework/1.1.15