Reputation: 1
I'm trying to set up Xdebug (version 3.1.1) with NetBeans 12.2 on Windows 10.
I've followed the directions on the xdebug website utilizing the wizard to analyze the phpinfo()
and the wizard says I'm running the latest xdebug build, but NetBeans still doesn't start it correctly. Clicking on debug in Netbeans launches my website, but it does not load and the debug options are greyed out, besides ending the debug session. Launching the website normally works. I've got the port set to 9003, the mode
is set to "debug", start_with_request
is set as "yes" and the remote_handler
is "dbgp". Any help would be greatly appreciated, thanks!
EDIT: I'm running Java Version 8, Update 311. Also updated my problem to reflect updates to the upgrade notice from version 2 to 3.
EDIT 2: Shortened and clarified question. I also checked to see if my virus protection/firewall was the cause and it doesn't seem like that's causing it either. Link to xdebug_info()
via drive: https://drive.google.com/file/d/1dJCs8n30CCP4zI9KDAopaIV-lRT3k9BM/view?usp=sharing
Upvotes: 0
Views: 120
Reputation: 36794
Xdebug 3's default port is 9003
, and not 9000
, as per the upgrade guide. remote_host
is also no longer an existing setting name, again, as per the upgrade guide.
Upvotes: 1