Phpstorm error log message 2022-01-28 12:09:33,532 [90135677] DEBUG - eployment.config.PublishConfig - Failed to find server with id 3e420433-d1b9-4b3b-b7cb-9b893ac48ebe

Hi,

I am trying to use PHPstorm with Xdebug on my local server. I set breakpoints but phpstorm never stops on them when I start a debugging session. I've checked the xdebug log and it is successfully connecting to port 9003, which is what I have phpstorm supposedly listening on. I found an error in the phpstorm error log that might explain the problem, but I don't know how to fix it.

Here's the error:

2022-01-28 12:09:33,532 [90135677]  DEBUG - eployment.config.PublishConfig - Failed to find server with id 3e420433-d1b9-4b3b-b7cb-9b893ac48ebe 

I have my deployment server config set to localhost. I am using the free trial version and I am wondering if that is the problem. I noticed that I did not have the option to create a PHP Web application. I only had the option to create a PHP Web page.

0
1 comment

2022-01-28 12:09:33,532 [90135677] DEBUG - eployment.config.PublishConfig - Failed to find server with id 3e420433-d1b9-4b3b-b7cb-9b893ac48ebe

I don't think this event has anything to do with debugging that doesn't work. The Xdebug functionality doesn't depend on deployment.

I am using the free trial version and I am wondering if that is the problem

Definitely not.

I noticed that I did not have the option to create a PHP Web application. I only had the option to create a PHP Web page.

If you are debugging a web application, please don't use run/debug configurations to initiate debugging - the zero-configuration approach (when you start debugging from the browser) is much more convenient and predictable.

I set breakpoints but phpstorm never stops on them when I start a debugging session

What if you enable Run | Break at first line in PHP scripts, will PhpStorm stop in at the beginning of the first executed file?

0

Please sign in to leave a comment.