Failure to stop debugging at the specified breakpoint line in Phpstorm
I installed xdebug according to the documentation and changed the PHP.ini file.
[xdebug]
zend_extension="/opt/homebrew/Cellar/php@8.0/8.0.30/pecl/20200930/xdebug.so"
xdebug.mode=develop,debug
xdebug.client_host=127.0.0.1
xdebug.discover_client_host=true
xdebug.client_port=9003
xdebug.start_with_request=yes
xdebug.idekey=PHPSTORM
xdebug.log="/Users/xxx/projects/log/xdebug.log"
I run the server and installed all the plugins.
I put breack point on a simple
<?php
$a=2;
$b=3;
print $a+$b;
But I can not trigger the breack point.
I attached the xdebug log and phpstorm log too
Upload id: 2023_10_21_yfPdn8jD2e8Qzrh5kpYxrL (files: xdebug.log and 2 more)
Please sign in to leave a comment.
Please check if you have Settings | PHP | Debug | Ignore external connections through unregistered server configurations enabled.