I am using
Intellij 14.1.4, PHP v5.5.38, Xdebug v2.2.3
I made a change which was defining a php $GLOBALS['CRED_TYPE'] variable. I removed that variable later. I checked everywhere and this variable is not defined anywhere anymore. It just not there in my code.
But for some reason i am still getting the following problem
( ! ) Fatal error: Uncaught exception 'ErrorException' with message 'Undefined index: CRED_TYPE' in xdebug://debug-eval on line 1 ( ! ) ErrorException: Undefined index: CRED_TYPE in xdebug://debug-eval on line 1
I even recloned the whole project, but whenever i try to debug it just get lost (crashed) and sometime i get this exception. This should not be there, as there is no such code, but why am i getting this.
There is no traceback to the file either. I don't know what to do, any ideas please?
$GLOBALS['CRED_TYPE']
there in the past and now the IDE requests its evaluation every time the debugger stops. – Vesperal