I'm using XAMPP and PHP-Debug package for Atom IDE and download xdebug dll file.
this is my php.ini xdebug :
[xdebug]
zend_extension="C:\xampp\php\ext\php_xdebug-2.7.2-7.3-vc15-x86_64.dll"
xdebug.remote_enable=1
xdebug.remote_host="localhost"
xdebug.remote_connect_back=0 # Not safe for production servers
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.remote_mode=req
xdebug.remote_autostart=1
xdebug.remote_log="C:\Users\mehra\Documents\xdebug.log"
and using XAMPP and ATOM IDE for run a simple script but I get this error :
[12120] Log opened at 2019-08-08 13:36:30
[12120] I: Connecting to configured address/port: localhost:9000.
[12120] E: Time-out connecting to client (Waited: 200 ms). :-(
[12120] Log closed at 2019-08-08 13:36:30
[12120]
I see someone suggest to changexdebug.remote_autostart=1
to xdebug.remote_autostart=0
and read xdebug Time-out connecting to client. :-( using phpstorm 7.1.3/vagrant/virtualbox/magento but still doesn't work
PHP-debugger setting :