商品詳細ページ
カスタマイズ中
この商品について
セット内容
PHP warning
Attempt to read property "product_sku_images" on null
/var/www/test.hanamary.jp/src/ec_theme/default/item_pages/index.php(360)
348 <?php endif; ?> 349 350 <h3 class="detail onlyInit">この商品について</h3> 351 <div class="container onlyInit"> 352 <div class="itemDetail slide-up"> 353 <div class="itemDetail_header"> 354 <h4 class="itemDetail_title">セット内容</h4> 355 </div> 356 <div class="row selected_itemList content-txt"> 357 <?php foreach ($skus as $sku) : ?> 358 <div class="col-xs-12 col-sm-6 col-md-4 matchHeight flower-list"> 359 <div class="col-xs-2 vertical-center"> 360 <img src="<?php echo Yii::app()->request->baseUrl . $sku->product_sku_images[0]->image; ?>" class="img-responsive"> 361 </div> 362 <div class="col-xs-10"> 363 <p class="flower-memo"><?php echo $sku->getComment(); ?></p> 364 </div> 365 </div> 366 <?php endforeach; ?> 367 </div> 368 <div class="open-btn onlyInit"> 369 <p class="open-action">もっと見る</p> 370 </div> 371 </div> 372 </div>
Stack Trace
| #0 |
+
–
/var/www/test.hanamary.jp/src/framework/web/CBaseController.php(140): require("/var/www/test.hanamary.jp/src/ec_theme/default/item_pages/index....") 135 ob_implicit_flush(false); 136 require($_viewFile_); 137 return ob_get_clean(); 138 } 139 else { 140 require($_viewFile_); 141 } 142 } 143 144 /** 145 * Creates a widget and initializes it. |
| #1 |
+
–
/var/www/test.hanamary.jp/src/framework/web/CBaseController.php(101): CBaseController->renderInternal("/var/www/test.hanamary.jp/src/ec_theme/default/item_pages/index....", array("template_path" => "https://test.hana.hp-renaissance.net/ec_theme/default/", "item" => ItemModel, "is_fav" => "0", "skus" => array(ProductSkuModel, ProductSkuModel, ProductSkuModel, ProductSkuModel, ...), ...), false) 096 $content=$renderer->renderFile($this,$viewFile,$data,$return); 097 //var_dump($content); 098 } else { 099 // 全部こっち 100 //var_dump(1); 101 $content=$this->renderInternal($viewFile,$data,$return); 102 //var_dump($content); 103 } 104 // var_dump($viewFile); 105 106 if(count($this->_widgetStack)===$widgetCount) |
| #2 |
+
–
/var/www/test.hanamary.jp/src/protected/components/Controller.php(74): CBaseController->renderFile("/var/www/test.hanamary.jp/src/ec_theme/default/item_pages/index....", array("template_path" => "https://test.hana.hp-renaissance.net/ec_theme/default/", "item" => ItemModel, "is_fav" => "0", "skus" => array(ProductSkuModel, ProductSkuModel, ProductSkuModel, ProductSkuModel, ...), ...), false) 69 } 70 } 71 72 $this->viewData = $data; 73 try { 74 return parent::renderFile($viewFile, $data, $return); 75 } catch (Throwable $e) { 76 //var_dump($e->getMessage()); 77 //var_dump($e->getTraceAsString()); 78 } 79 } |
| #3 |
+
–
/var/www/test.hanamary.jp/src/protected/controllers/EcpagesController.php(1011): Controller->renderFile("/var/www/test.hanamary.jp/src/ec_theme/default/item_pages/index....", array("template_path" => "https://test.hana.hp-renaissance.net/ec_theme/default/", "item" => ItemModel, "is_fav" => "0", "skus" => array(ProductSkuModel, ProductSkuModel, ProductSkuModel, ProductSkuModel, ...), ...)) 1006 { 1007 $this->currentTemplate = $this->themeDirInside.'item_pages/index'; 1008 } 1009 1010 //ビューの表示 1011 $this->renderFile( $this->currentTemplate, $data ); 1012 } 1013 1014 // ---------------------------------------------------- 1015 /** 1016 * お気に入り |
| #4 |
+
–
/var/www/test.hanamary.jp/src/protected/controllers/EcpagesController.php(254): EcpagesController->item_pages("user_13786") 249 $itemUrl = null; 250 if (count($this->segment) > 1) { 251 $itemUrl = $this->segment[1]; 252 $itemUrl = preg_replace( '/\.php/', '', $itemUrl ); 253 } 254 $this->item_pages($itemUrl); 255 return; 256 } 257 //通常のHTMLページ 258 elseif(preg_match( '/\.php$/', $this->segment[count($this->segment)-1])) 259 { |
| #5 |
+
–
/var/www/test.hanamary.jp/src/framework/web/actions/CInlineAction.php(49): EcpagesController->actionIndex() 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 } |
| #6 |
+
–
/var/www/test.hanamary.jp/src/framework/web/CController.php(308): CInlineAction->runWithParams(array("/archives/user_13786_html" => "")) 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; |
| #7 |
+
–
/var/www/test.hanamary.jp/src/framework/web/CController.php(287): CController->runAction(CInlineAction) 282 * @see runAction 283 */ 284 public function runActionWithFilters($action,$filters) 285 { 286 if(empty($filters)) { 287 $this->runAction($action); 288 } else { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); 292 $this->_action=$priorAction; |
| #8 |
+
–
/var/www/test.hanamary.jp/src/framework/web/CController.php(266): CController->runActionWithFilters(CInlineAction, array()) 261 if(($parent=$this->getModule())===null) { 262 $parent=Yii::app(); 263 } 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
| #9 |
+
–
/var/www/test.hanamary.jp/src/framework/web/CWebApplication.php(282): CController->run("index") 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))); |
| #10 |
+
–
/var/www/test.hanamary.jp/src/framework/web/CWebApplication.php(141): CWebApplication->runController("ecpages/index") 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. |
| #11 |
+
–
/var/www/test.hanamary.jp/src/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 /** |
| #12 |
+
–
/var/www/test.hanamary.jp/src/index.php(29): CApplication->run() 24 // specify how many levels of call stack should be shown in each log message 25 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 26 27 require_once($yii); 28 //require 'request_setter.php'; 29 Yii::createWebApplication($config)->run(); |
2026-07-17 03:10:20 Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.5 Yii Framework/1.1.14
