Waiting for incoming connection with ide key Message on PHPStorm with laravel

I want to install debug and integrate it with PhpStorm.

I went through all the necessary steps. I add these lines to the php.ini file:

zend_extension = "D:\wamp\bin\php\php5.5.12\ext\php_xdebug-2.3.3-5.5-vc11-x86_64.dll"
xdebug.extended_info=1
xdebug.remote_enable=1
xdebug.profiler_enable= true
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000

This is a screenshot of the debugger:

enter image description here

And this is a screenshot of my breakpoint using the controller index method called HomeController:

enter image description here

And this is the xdebug section on the php_info () page:

enter image description here

But every time I click the Debug button in phpStorm, the main page opens as an address, for example:

http://localhost:8000/?XDEBUG_SESSION_START=17288

and the following message appears on the debugger tab:

Waiting for incoming connection with ide key '17288'

I learn Google and try differently, but I did not answer.

: , Xdebug ( laravel). , PHPStorm. , localhost:8000, , localhost/MyProject/public, .

+4
2

, PhpStorm ( ).

. http://bugs.xdebug.org/view.php?id=618

Derick Rethans :

PHP , . , , . , PHPStorm .

, .

+1

, , : web.php(laravel 5.X) route.php(laravel 4.X) " xdebug" "", Ok https://murze.be/2017/01/xdebug-with-laravel-valet/

0

Source: https://habr.com/ru/post/1617483/


All Articles