J'ai un petit problème avec Smarty
Voici l'architecture du site
/Test/index.php
/Smarty/Smarty.class.php
/templates/TEST/test.tpl
/templates_c/
Code de index.php
Code : Tout sélectionner
<?php
$moi = array ('moi', 'toi', 'nous');
require('../Smarty/Smarty.class.php');
$cmsTpl = new Smarty();
$cmsTpl->assign('LANG', $moi);
$cmsTpl->display('test.tpl');
?>
Voici l'erreur
Code : Tout sélectionner
Fatal error: Uncaught exception 'SmartyException' with message 'Unable to load template file 'TEST/test.tpl'' in /home/moi/Smarty/sysplugins/smarty_internal_template.php:162 Stack trace: #0 /home/moi/Smarty/sysplugins/smarty_internal_template.php(537): Smarty_Internal_Template->isExisting(true) #1 /home/moi/Smarty/Smarty.class.php(335): Smarty_Internal_Template->getRenderedTemplate() #2 /home/moi/Smarty/Smarty.class.php(379): Smarty->fetch('TEST/test.tpl', NULL, NULL, NULL, true) #3 /home/moi/Test/index.php(10): Smarty->display('TEST/test.tpl') #4 {main} thrown in /home/moi/Smarty/sysplugins/smarty_internal_template.php on line 162Merci