I have a problem when I want to try slim implementation with Twig View.
error:
Fatal error: TwigView::getEnvironment() [function.require]: Failed opening required '/Autoloader.php' (include_path='.:/opt/local/etc/php5') in /opt/local/apache2/htdocs/slim/Slim-Extras/Views/TwigView.php on line 87
this is my code
require '/opt/local/apache2/htdocs/slim/Slim/Slim.php';
17 require '/opt/local/apache2/htdocs/slim/Slim-Extras/Views/TwigView.php';
18
21 $app = new Slim(array(
22 'view'=> new TwigView()
23 ));
24
25 $app->get('/',function() use ($app){
26 $title = "hi there are new twig";
27 $body = "and this is body maybe you are have idea for this content...:)";
28 $data = array('title' => $title, 'body' => $body);
29 $app->view()->setData(array('title' => $title, 'body' => $body));
30 $app->render('TopPage.html');
31
32
33 });
34 $app->get('/hello/',function(){
35 echo 'Hello' ;
36 });
37 $app->get('/hello/:name',function($name){
38 echo "yaay...exellent ".$name;
39 });
40 $app->run();
any suggestion? I do not know why I got such an error.
source
share