Hey this is just a small hack that will allow you to debug b2evo without having to modify your _advanced.php file.
The new way of choosing wether to debug or not is to simply add;
?debugb2evo=1
OR if there is already a ? in the url;
&debugb2evo=1
To the url of your b2evo page.
Heres what you do;
Change [ Line - 34 ] [ File - \blogs\conf\_advanced.php ]
// Set $Debug
$debug = 0;
To;
// Set $Debug
if( isset( $_GET['debugb2evo'] ) )
$debug = (int)($_GET['debugb2evo']);
else
$debug = 0;