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...
2 Answers
Comments
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.
1 Comment
Vinícius Fagundes
welcome to SO! Notice its a 10 years old question. Make sure the answer still relevent nowadays.
set_error_handler("var_dump");early in your script. Otherwise use the xdebug profiler.