I'm trying to convert my static theme into WordPress theme, but face this error. how can i resolve this?
Asked
Active
Viewed 82 times
2 Answers
1
From what I can understand by reading other posts discussing this error. This is an error generated by the xdebug extension. If you can change the setting explained On xdebug's website I believe that'll fix that error.
Also: Here's another post discussing a similar (if not same) problem.
EDIT: Could you post some code as well? If your nesting reaches over 400 it would appear that you gotten yourself in a neverending loop.
0
This error message comes specifically from the XDebug extension. write following code in your php script .
ini_set('xdebug.max_nesting_level', 200);
Follow this link . click here