回答編集履歴
1
内容の修正
answer
CHANGED
@@ -1,9 +1,12 @@
|
|
1
1
|
テンプレートのパス指定を間違えていませんか。
|
2
2
|
|
3
|
-
C_Helper_PageLayout.php L62 の
|
3
|
+
C_Helper_PageLayout.php L62 の$arrPageData[0]['filename']の値が空ではありませんか?
|
4
|
+
|
4
5
|
```PHP
|
5
6
|
$objPage->tpl_mainpage = $this->getTemplatePath($device_type_id) . $arrPageData[0]['filename'] . '.tpl';
|
6
7
|
|
7
8
|
```
|
8
|
-
パスのecの後ろに//が入ってい
|
9
|
+
$this->getTemplatePath($device_type_id)の戻り値もパスのecの後ろに//が入っています。
|
9
|
-
/home/jimocity/xxx/public_html/ec//data/Smarty/templates/default/.tpl
|
10
|
+
/home/jimocity/xxx/public_html/ec//data/Smarty/templates/default/.tpl
|
11
|
+
|
12
|
+
GC_Utils::gfPrintLog()を使って引数などの詳細なログを出力されてみたらどうでしょうか。
|