为什么我用zend框架获取include_path警告?

I have a zend tutorial zip but when i am running it i am getting two warnings that are listed below

Warning: include(/var/www/html/zendapp/module/Admin/config/../view/layout/layout.phtml): failed to open stream: No such file or directory in /var/www/html/zendapp/vendor/zendframework/zendframework/library/Zend/View/Renderer/PhpRenderer.php on line 506


Warning: include(): Failed opening '/var/www/html/zendapp/module/Admin/config/../view/layout/layout.phtml' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/html/zendapp/vendor/zendframework/zendframework/library/Zend/View/Renderer/PhpRenderer.php on line 506

Please help me I tried over google but still unable to find any solution.

I got it in Admin/config/module/module.config.php has 'template_map' array that has

'view_manager' => array(
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
            'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
            'error/404'               => __DIR__ . '/../view/error/404.phtml',
            'error/index'             => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            'admin' => __DIR__ . '/../view'
        ),
    ),

and the location of layout.phtml is var/www/html/zendapp/module/Application/view/layout/layout.phtml