Solved.
The problem was bad configuration for PHP XDebug
These are the correct settings for php.ini file in PHP 8.3.13 version:
[Xdebug]
; ENABLE XDEBUG
zend_extension="D:/laragon/bin/php/php-8.3.13-Win32-vs16-x64/ext/php_xdebug-3.4.0beta1-8.3-vs16-x86_64.dll"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_host = "localhost"
xdebug.remote_port = 9003
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = "req"
xdebug.idekey = "VSCODE"
xdebug.remote_log = "D:/laragon/tmp/xdebug.log"
The problem was bad configuration for PHP XDebug
These are the correct settings for php.ini file in PHP 8.3.13 version:
[Xdebug]
; ENABLE XDEBUG
zend_extension="D:/laragon/bin/php/php-8.3.13-Win32-vs16-x64/ext/php_xdebug-3.4.0beta1-8.3-vs16-x86_64.dll"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_host = "localhost"
xdebug.remote_port = 9003
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = "req"
xdebug.idekey = "VSCODE"
xdebug.remote_log = "D:/laragon/tmp/xdebug.log"
Statistics: Posted by usielalmeida — Thu Nov 07, 2024 2:01 am