Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
debugging custom setup
hi,
I'm trying to use an existing users table with Vanilla, I've turned debug on, but I can't login, is it possible to output the sql thatVanilla is generating so I can debug what the app is receiving etc.
thanks,
jon
0
This discussion has been closed.
Comments
I want to debug the Page manager plugin but it always starts from settings.php. not the default.php inside Page Manager.
Using PHP development tool for eclipse with xdebug
this problem is universal so doesn't matter what debugger ur using. since ur using
settings.php?PostBackAction=Pages&XDEBUG_SESSION_START=msb
It will start from settings.php
I cannot run it on default.php because all the iF statements fail
use xdebug_break(); inside default.php
then when i call
settings.php?PostBackAction=Pages&XDEBUG_SESSION_START=msb
and click play to run through, it will stop at xdebug_break();
then i can do step in and other stuff like usual
See its so simple