phpMyAdmin with slow Xdebug on Windows 8.1 with Xampp

Asked

Viewed 491 times

1

Boas, A while ago I noticed that my phpMyAdmin was stupidly slow (more than half a minute in a simple consultation)... After researching about this, I came to the conclusion that Xdebug should be turned on in the settings of PHP.ini.. I commented and everything went back to normal!

However lately I have needed a lot of Xdebug and phpMyAdmin, and it gets boring every time I need to use one or the other to go to php.ini to comment or uncomment Xdebug...

Can anyone tell me any way around this problem?

Is there any definition of Xdebug that is too much or may 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)... Thank you in advance!

1 answer

3


According to this answer in Soen, you need to disable remote debugger auto-boot:

xdebug.remote_autostart = 0
  • Good! Solved! It got much faster! Thanks!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.