I setup an AWS EC2 instance, loaded up CentOS, PHP and Phalcon. Built my first single module test app using the docs, and all was well.
Then I thought I'd get all fancy and build a multi-module app, with the intent of putting in an API.
I've got a folder structure like this:
/var
/app
/current
/my_app
/multiple
/apps
/app0
/app1
app0 and app1 are basically direct copies of the working single module app.
I have my index.php in /my_app It's a copy and edit of the one in the phalcon docs.
Everything seems ok until it fires echo $application->handle()->getContent(); Nothing happens. I echo some stuff right before it, and right after it, but the after echo never happens.
I didn't want to spam the post with code, but I can supply that if need be.
Thanks!
Jeff