Hallo!
Ich mache garade meine ersten Schritte mit der Template-Engine Smarty.
Ich habe gerade die Installation abgeschlossen und wollte jetzt das letzte Script von http://smarty.php.net/manual/de/inst...arty.basic.php testen. Ich habe meines so umgeschrieben:
Ich bekomme folgende Fehlermeldung:
Warning: Smarty error: unable to read resource: "index.tpl" in C:\Programme\xampp\php\pear\smarty\libs\Smarty.class.php on line 1095
in dieser Zeile steht
function trigger_error($error_msg, $error_type = E_USER_WARNING)
{
trigger_error("Smarty error: $error_msg", $error_type);
}
Ich mache garade meine ersten Schritte mit der Template-Engine Smarty.
Ich habe gerade die Installation abgeschlossen und wollte jetzt das letzte Script von http://smarty.php.net/manual/de/inst...arty.basic.php testen. Ich habe meines so umgeschrieben:
PHP-Code:
<?php
define('SMARTY_DIR','C:\Programme\xampp\php\pear\smarty\libs\\');
require(SMARTY_DIR.'Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = '/htdocs/kisi/smarty/templates/';
$smarty->compile_dir = '/htdocs/kisi/smarty/templates_c/';
$smarty->config_dir = '/htdocs/kisi/smarty/configs/';
$smarty->cache_dir = '/htdocs/kisi/smarty/cache/';
$smarty->assign('name','Ned');
$smarty->display('index.tpl');
?>
Warning: Smarty error: unable to read resource: "index.tpl" in C:\Programme\xampp\php\pear\smarty\libs\Smarty.class.php on line 1095
in dieser Zeile steht
function trigger_error($error_msg, $error_type = E_USER_WARNING)
{
trigger_error("Smarty error: $error_msg", $error_type);
}
Kommentar