0
Good afternoon.
I have Xdebug configured in PHPSTORM and it is working, the problem is when my application needs to make some HTTP request, it goes between the breakpoints until the call, after that it seems that it is forever waiting for an answer that does not come. If I turn off the Xdebug and make a print_r in the variable Sponse the return comes fast. I don’t know what might be happening. Someone can give me a light?
These are the current settings of Xdebug
opcache.enable=1
zend_extension=xdebug.so
xdebug.remote_enable=on
xdebug.remote_autostart=off
xdebug.idekey=PHPSTORM
xdebug.profiler_enable=0
xdebug.profiler_output_dir=/var/www/html/profiler/
xdebug.collect_params=4
xdebug.remote_log='/tmp/xdebug.log'
Thank you.