このエラーが発生し続けます:
タイプ: SmartyException メッセージ: プロパティ「データ」が存在しません。ファイル: D:\Work\Apache\htdocs\anvelopebv.ro\Smarty\sysplugins\smarty_internal_templatebase.php 行: 810
そして、私は何が問題なのかわからない:(
require 'Smarty/Smarty.class.php';
$smarty = new Smarty;
$smarty->setTemplateDir('../Templates/');
$smarty->setCompileDir('../Templates/Compiled');
$smarty->setCacheDir('../Templates/Cache');
$smarty->setCacheDir('../Templates/Configs');
$smarty->debugging = true;
require 'Slim/Slim.php';
\Slim\Slim::registerAutoloader();
$app = new \Slim\Slim(array(
'view' => $smarty
));
$app->get('/', function() use ($app) {
$app->render('home.tpl', array('test' => 'works'));
});
$app->run();