phpMyAdmin with slow Xdebug in Windows 8.1 with Xampp

1

Good, Some time ago I noticed that my phpMyAdmin was stupidly slow (more than half a minute in a simple query) ... After researching this, I came to the conclusion that one should have XDebug turned on in PHP.ini settings ... I commented everything and everything went back to normal!

However, lately I've been needing a lot of XDebug and also phpMyAdmin, and it gets annoying every time I need to use one or the other to go to php.ini to comment or uncomment XDebug ...

Can anyone tell me some way around this problem?

Is there any definition of XDebug that is over or that might be giving these problems?

[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.trace_output_dir = "C:\xampp\tmp"
xdebug.xdebug.remote_port = 9000
xdebug.idekey=PHPSTORM

I use Windows 8.1 (64bits), Xampp 1.8.3 (PHP 5.5.15, MySQL 5.6.20, Apache 2.4.10) ... Thanks in advance!

    
asked by anonymous 06.04.2015 / 22:22

1 answer

3

According to this response in SOEn , you need to disable remote debugger auto-initialization:

xdebug.remote_autostart = 0
    
06.04.2015 / 22:36