Validate Debugger Configuration on Web Server - Failed to execute: "Read timed out"
Hi,
I'm trying to get Xdebug to work. I'm running a local server with Xampp.
* I downloaded php_xdebug-2.5.4-7.1-vc14.dll and moved it to the proper location.
* I've added the following code to the php.ini file:
[Xdebug]
zend_extension = C:\xampp\php\ext\php_xdebug-2.5.4-7.1-vc14.dll
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey = PHPSTORM
* I restarted the server and checked the phpinfo. There is an Xdebug section there.
My PHPStorm settings are as follows:




When I try to validate the debugger configuration on web server, I get a loading window that doesn't progress then after a while I get the error message:

What am I missing?
Thank you in advance
Please sign in to leave a comment.
Hi there,
>What am I missing?
Why do you try to connect to localhost:9000 (xdebug port number in particular)? xdebug port is for xdebug/IDE to use -- not for you. It should not be used in any URLs that YOU are using.
Instead that should be an URL of the website you are trying to debug (your "ScheduleManager" project). Use URL that you are using to browse this site in a web browser.
Ah I see. Very new to this. It works, thank you!