I think that my server became slow since I installed XDebug.
So, in order to test my hypothesis I want to disable XDebug completely.
I’ve been searching for tutorials on how to do this but I can’t find such information.
I think that my server became slow since I installed XDebug. So, in order
Share
Find your
php.iniand look for XDebug.Set xdebug autostart to false
Disable your profiler
Note that there can be a performance loss even with xdebug disabled but loaded. To disable loading of the extension itself, you need to comment it in your php.ini. Find an entry looking like this:
and put a
;to comment it, e.g.;zend_extension = ….Check out this post XDebug, how to disable remote debugging for single .php file?