xampp - Disable xDebug on phpMyAdmin -


i using xdebug first time. works well, when want go on localhost/phpmyadmin want start debug (i don't have breakpoints here).

how can disable phpmyadmin?

my config:

[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 = on xdebug.remote_handler = "dbgp" xdebug.remote_host = localhost xdebug.remote_port = 9000 xdebug.trace_output_dir = "c:\xampp\tmp" xdebug.collect_return="0" 

i using xampp, phpstorm.

you can turn off debug connection listener going run > stop listening php debug connections.

phpstorm ignore connections xdebug. when want debug again go run > start listening php debug connections , it'll work again.

you permanently ignore files using skipped paths:

  • go preferences
  • go languages & frameworks > php > debug > skipped paths
  • click '+' sign open browse dialog
  • browse web root phpmyadmin folder located , select folder
  • click ok , exit out of preferences

the debugger should ignore scripts in directory.


Comments

Popular posts from this blog

Combining PHP Registration and Login into one class with multiple functions in one PHP file -

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -