PHP warning

PHP warning

include_once(/var/www/html/www.mplus.fun/app/config/../htmlv2/module/games_pages/tq/game.php): failed to open stream: No such file or directory

/var/www/html/www.mplus.fun/app/htmlv2/module/game/game_hero.php(8)

01 <?php
02 //$_data = get_data_from_XXX();
03 $mods = $model["mods"]["officialPage"];
04 $gameId = $mods["gameId"];
05 ?>
06 <div id="game-hero">
07     <link rel="stylesheet" href='<?=get_static("p/mplusv2/games_resource/$gameId/style.css")?>'>
08     <?php include_once(TPL_PATHV2."module/games_pages/$gameId/game.php");?>
09     <div class="login-box">
10         <form class="mplus-login-form" action="" method="POST">
11             <input name="email" placeholder="m+帳號:" />
12             <input name="password" placeholder="密碼:" type="password" />
13             <button type="submit">登入</button>
14             <a class="btn-fb-login" href="#"></a>
15         </form>
16     </div>   
17 </div><!-- #game-hero -->

Stack Trace

#0
+
 /var/www/html/www.mplus.fun/app/htmlv2/module/game/game_hero.php(8): include_once()
03 $mods = $model["mods"]["officialPage"];
04 $gameId = $mods["gameId"];
05 ?>
06 <div id="game-hero">
07     <link rel="stylesheet" href='<?=get_static("p/mplusv2/games_resource/$gameId/style.css")?>'>
08     <?php include_once(TPL_PATHV2."module/games_pages/$gameId/game.php");?>
09     <div class="login-box">
10         <form class="mplus-login-form" action="" method="POST">
11             <input name="email" placeholder="m+帳號:" />
12             <input name="password" placeholder="密碼:" type="password" />
13             <button type="submit">登入</button>
#1
+
 /var/www/html/www.mplus.fun/app/htmlv2/game.php(20): include_once("/var/www/html/www.mplus.fun/app/htmlv2/module/game/game_hero.php")
15 
16 <?php include_once(TPL_PATHV2.'module/common/header.php');?>
17 
18 <div id="bd">
19     <div class="inner full-width clearfix">
20         <?php include_once(TPL_PATHV2.'module/game/game_hero.php');?>
21         <?php include_once(TPL_PATHV2.'module/game/game_nav.php');?>
22         <?php if(count($mods["game_servers"]))
23                 include_once(TPL_PATHV2.'module/game/game_recent_servers.php');
24         ?>
25         <?php if(count($mods["game_servers"])) 
#2
+
 /var/www/html/www.mplus.fun/app/components/Controller.php(50): include_once("/var/www/html/www.mplus.fun/app/htmlv2/game.php")
45         $model['comm']['before_body']['title'] = $title;
46     }
47     public function displayV2($path)
48     {
49         global $model;
50         include_once(TPL_PATHV2 . $path);
51     }
52     public function setKeywordsV2($keywords) {
53         global $model;
54         $model['comm']['before_body']['keywords'] = $keywords;
55     }
2024-03-29 23:02:22 nginx Yii Framework/1.1.10