Reputation: 62464
I'm getting the above error, is there any built in support for a stack trade in code igniter? I have an infinite loop somewhere I'm trying to figure out where it is...
Upvotes: 1
Views: 4563
Reputation: 1
If you use hmvc, check if you have not loaded something in the wrong way, i.e, $this->load->module() instead of $this->load->model(). I faced the same issue and that was the cause of that message.
Upvotes: 0
Reputation: 1763
Try using the xDebug plugin for PHP for the functionality you seek:
Upvotes: 2