Home > OS >  xdebug xdebug.mode = debug not working for me
xdebug xdebug.mode = debug not working for me

Time:03-22

I have installed xdebug on a ubuntu 20.04 system. I followed xdebug settings 1

xdebug settings 2

On a whim, I tried placing all of those settings also within a new section of php.ini which I called [xdebug]. When that didn't work, I tried [Xdebug]. I restarted Apache2 after each attempt, but the symptom never changed.

What might I be missing?

Thanks, Dennis

CodePudding user response:

zend_extension="/usr/lib/php/20190902/xdebug.so (that has an extra ").

In any case, it is very likely that there is either another xdebug.mode line somewhere, or a different INI file is being used. Try to see what the output of xdebug_info() tells you — it also mentions which INI files have been read.

  • Related