Ben
Ben

Reputation: 62464

CodeIgniter: Maximum function nesting level of '100' reached, aborting!

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

Answers (2)

anfern
anfern

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

Michael B
Michael B

Reputation: 1763

Try using the xDebug plugin for PHP for the functionality you seek:

http://www.xdebug.org/

Upvotes: 2

Related Questions