I had a problem installing phpwiki with xdebug installed. The 'possiblyDeflowerVirgin' function would trip up the default settings xdebug.max_nesting_level of 64.
Upping this to 256 helped fixed it
ini_set('xdebug.max_nesting_level',256);
although possibly a lower number will work too
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I had a problem installing phpwiki with xdebug installed. The 'possiblyDeflowerVirgin' function would trip up the default settings xdebug.max_nesting_level of 64.
Upping this to 256 helped fixed it
ini_set('xdebug.max_nesting_level',256);
although possibly a lower number will work too
thanks, I couldn't get it working multithreaded.