Closed Saeven closed 12 years ago
I think your configuration conflicts with the suffix_locked
option which is default true
. You can try to change the suffix_locked
to false
, or append the .twig
extension to your layouts/layout
and index/index
.
Rovak did some magic.
Loading composer repositories with package information Updating dependencies
Then, ignore the README.md presently on site if it differs from what lies below at the config level:
/**
* Twig
*/
'zfctwig' => array(
'namespaces' => array(
'application' => __DIR__ . '/../view',
),
),
/**
* ViewManager
*/
'view_manager' => array(
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'layout' => 'layout',
//'exception_template' => '@theme/error/index.twig',
// 'not_found_template' => '@theme/error/404.twig',
'template_path_stack' => array(
__DIR__ . '/../view',
),
),
YMMV
Module config in pertinent spot reads:
'view_manager' => array(
Have tried every permutation and combination I can think of..
Thanks for any guidance you can offer.