I'm trying different things with Phalcon and I'm liking it but sometimes just get to my nerves...
I've created a brand new app, 3 controllers (index, login, users), 1 model (users). the app load correctly on the index controller using the views/index/index.volt template encapsulated in views/index.volt main layout template.
the views/index/index.volt contains this:
<h1>Dummy Test!</h1>
{{ link_to('login','Sign In') }} / {{ link_to('users/register','Sign up') }}
{# Inject the 'flash' service #}
<div id="messages">{{ flashSession.output() }}</div>
the views/index.volt contains this:
<h1>Dummy<small> - a Phalcon based test project</small></h1>
{{ content() }}
the links for Sign in and Sign up are correctly generated, however when I click on any of them it loads the same screen even though the URL in the address bar is correctly changed.
I've checked the php and apache error logs and couldn't find any errors. I've then added the debug in the bootstrap file with (new Phalcon\Debug)->listen(); and removed the try/catch statement. But still same result and no debug interface pops up.
any idea on how to troubleshoot this ?
thanks