Reputation: 11
I can found in logs errors like:, Maximum function nesting level of '100' reached, aborting!
The line is:
$keys = explode('.', $keys);
Any idea?
Upvotes: 0
Views: 139
Reputation: 149
If you are using xdebug, increase the value of xdebug.max_nesting_level in your php.ini
http://xdebug.org/docs/all_settings#max_nesting_level
Upvotes: 0