Xdebug config doesn't work
已回答
Hello, I am trying to configure my xdebug but it is not stopping at breakpoints in an application that I am running with the command: php -S 0.0.0.0:8000, my environment and configuration is:
Mac OSX High Sierra
PHP 5.6.33 (cli) (built: Jan 7 2018 11:14:18)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
with Xdebug v2.5.5, Copyright (c) 2002-2017, by Derick Rethans

ext-xdebug.ini

Validacion de debug

It only works with the chrome extension, but since I am developing mobile apps I need to stop when the phone makes a request to the server.
请先登录再写评论。
Hi there,
>It only works with the chrome extension, but since I am developing mobile apps I need to stop when the phone makes a request to the server.
So it works in general?
If it only works in Chrome .. then it means that you are not sending "debug me" flag (GET/POST parameter or COOKIE) with your other requests. Few possible choices here:
https://xdebug.org/docs/remote
Thanks for the help, changing the remote_autostart worked for me