Open HelloGrayson opened 13 years ago
It should work without the need of "resources.view[] = ", this is useful to force the view resource to be loaded even if no config is needed.
Have you added the "Ano_ZFTwig/library" path to your include_path directive in index.php ?
set_include_path(implode(PATH_SEPARATOR, array(
get_include_path(),
realpath(APPLICATION_PATH . '/../library'),
realpath(APPLICATION_PATH . '/../library/Twig/lib'),
realpath(APPLICATION_PATH . '/../library/Ano_ZFTwig/library'),
)));
With
Ano
in library and the following configuration no application resources are firing. The init methods onAno_Application_Resource_Twig
andAno_Application_Resource_View
are not being called.Is it possible that
resources.view[] =
needs to be called afterwards? It seems like the ordering ofapplication.ini
is important, when should this config appear relatively in the broader scope ofcapplication.ini
.