0
我想在我的主機上運行的php項目中使用twig。該代碼在我的本地主機服務器上正常工作,但它在我的主機中不起作用。我應該在我的主機上設置任何配置嗎? 這裏是我的index.php:(!甚至沒有任何錯誤消息)在Cpanle主機中包含Twig
<?php
try{
echo "Under Construction";
require_once "/lib/Twig/Autoloader.php";
echo "require_once is OK";
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem('tmpl');
$twig = new Twig_Environment($loader);
echo $twig->render('index.twig', array('name' => 'Ali'));
} catch(Exception $e){
echo "Error: " . $e.getMessage();
}
這說明不了什麼,只是我看到「正在建設中」當我去rkeshmir.ir