Timeline for Solution for "Fatal error: Maximum function nesting level of '100' reached, aborting!" in PHP
Current License: CC BY-SA 3.0
44 events
when toggle format | what | by | license | comment | |
---|---|---|---|---|---|
Dec 31, 2020 at 10:40 | answer | added | Kay Angevare | timeline score: 4 | |
Jun 20, 2020 at 9:12 | history | edited | Community Bot |
Commonmark migration
|
|
Jan 1, 2020 at 16:47 | answer | added | Yassine ECHCHARAFI | timeline score: -3 | |
May 1, 2018 at 8:16 | answer | added | cofirazak | timeline score: 5 | |
Mar 29, 2018 at 6:26 | comment | added | Brian | I just ran into this using a recursive algorithm on a large data set. No value for max_nesting_level is large enough in my case and I had to find a non-recursive method to do the same thing. It took longer, but it ran to completion. | |
May 23, 2017 at 12:34 | history | edited | URL Rewriter Bot |
replaced http://stackoverflow.com/ with https://stackoverflow.com/
|
|
Jan 30, 2017 at 16:37 | answer | added | Binod Kalathil | timeline score: 1 | |
Jan 30, 2017 at 15:01 | answer | added | sobeit | timeline score: 1 | |
Apr 12, 2016 at 7:20 | answer | added | Putri Dewi Purnamasari | timeline score: 3 | |
Apr 6, 2016 at 1:45 | answer | added | Gujarat Santana | timeline score: 13 | |
Dec 6, 2015 at 0:17 | answer | added | CalvinMD | timeline score: 1 | |
Nov 23, 2015 at 15:11 | answer | added | Yasssine ELALAOUI | timeline score: 13 | |
Nov 19, 2015 at 17:39 | review | Close votes | |||
Nov 23, 2015 at 0:04 | |||||
Nov 19, 2015 at 17:20 | comment | added | A.L | Possible duplicate of Increasing nesting functions calls limit | |
Oct 19, 2015 at 15:08 | answer | added | svassr | timeline score: 20 | |
Aug 17, 2015 at 15:43 | answer | added | Martyn Shutt | timeline score: 8 | |
Feb 25, 2015 at 11:30 | answer | added | Daniel Wondyifraw | timeline score: 2 | |
Jul 27, 2014 at 19:36 | answer | added | theredled | timeline score: 0 | |
Mar 13, 2014 at 15:59 | answer | added | shahinam | timeline score: 23 | |
Mar 6, 2014 at 17:35 | answer | added | Lee Woodman | timeline score: 12 | |
Aug 22, 2013 at 13:45 | answer | added | Andrey | timeline score: 6 | |
Jul 25, 2013 at 1:32 | answer | added | vandersondf | timeline score: 12 | |
Jun 25, 2013 at 11:50 | answer | added | bacar ndiaye | timeline score: 45 | |
May 10, 2013 at 10:37 | comment | added | Jeffz | if use WAMP, note that disabling xdebug in php.ini does NOT always work; same applies to extending level of allowed nesting; a bug a guess; SOLUTION: go to php.ini and comment out php_xdebug-???.dll | |
Mar 31, 2013 at 18:14 | history | edited | hakre | CC BY-SA 3.0 |
edited tags
|
Mar 31, 2013 at 17:37 | history | edited | hakre |
edited tags
|
|
S Jan 17, 2013 at 20:01 | history | suggested | lmcanavals | CC BY-SA 3.0 |
Minor formatting.
|
Jan 17, 2013 at 19:54 | review | Suggested edits | |||
S Jan 17, 2013 at 20:01 | |||||
Jun 2, 2012 at 13:52 | comment | added | hakre | That is an error by xdebug. From the screenshot it's visible you use xdebug. You can disable the setting here: xdebug.max_nesting_level or tell how large the nesting level is. | |
Jun 2, 2012 at 13:50 | history | edited | hakre |
edited tags
|
|
May 9, 2012 at 8:08 | answer | added | Maxence | timeline score: 160 | |
Feb 14, 2012 at 20:45 | vote | accept | Rafay | ||
Feb 14, 2012 at 20:45 | vote | accept | Rafay | ||
Feb 14, 2012 at 20:45 | |||||
Dec 31, 2011 at 13:05 | vote | accept | Rafay | ||
Feb 14, 2012 at 20:45 | |||||
Dec 29, 2011 at 11:41 | answer | added | Rafay | timeline score: 62 | |
Dec 28, 2011 at 13:26 | history | edited | Rafay | CC BY-SA 3.0 |
added 422 characters in body
|
Dec 28, 2011 at 13:18 | answer | added | Louis-Philippe Huberdeau | timeline score: 43 | |
Dec 28, 2011 at 13:17 | history | edited | Rafay | CC BY-SA 3.0 |
added 48 characters in body
|
Dec 28, 2011 at 13:13 | comment | added | Rafay | @Abel I am sure that my code has no errors. There is a static variable which increments its value by one on each recursive call. If that variable is less than 100, the recursive calls go on until the variable reaches 100. I mean to say that the variable reaching 100 is actually the base case. While the error arises before 100 recursions. And as you have mentioned that some extension my be causing this, I would like to mention that I am using functions from simple_html_dom.php. If you have any idea about simple_html_dom.php, please help me in this regard. Please refer to updated question. | |
Dec 28, 2011 at 12:57 | comment | added | Abel | Also: PHP doesn't have a limit on nested function calls, it must be an extension you're using that causes this. | |
Dec 28, 2011 at 12:55 | history | edited | Abel | CC BY-SA 3.0 |
type
|
Dec 28, 2011 at 12:53 | answer | added | Yogu | timeline score: 6 | |
Dec 28, 2011 at 12:52 | answer | added | tamasgal | timeline score: 5 | |
Dec 28, 2011 at 12:46 | history | asked | Rafay | CC BY-SA 3.0 |