I've been making a forum system with Zend Framework for a little while now (I originally used my own OOP framework, but decided this was easier 😉 ).
Ok, so I extended the Zend_Controller_Action class and made my own version, as is shown here.
If you notice, I have instantiated a class called Messages, which is for the private message system that I'm creating. The issue is that when I instantiate that, everything goes blank; I can't access any controllers. The code for that class is here. Please note that it's a bit messy at the moment as I'm not even close to being done with it.
I have tried emptying the class by having no functions to no avail. I can't figure out what the hell is going on that would make all of my controllers blank. I checked the source and there's nothing as well. I have asked fellow programming friends and they were stumped too.
Any help is greatly appreciated! 😃