So I've got multiple projects on multiple domains that talk to each other, all mapped to my local IP 127.0.0.1. When debugging one with Xdebug, sometimes an "Incoming Connection" popup appears for one of the other projects I have.
I usually tell it not to listen to those connections as I only want it to listen to the project I'm currently working in, but like an idiot I accidentally accepted one of the connections for a WordPress project I have while debugging a separate Laravel project.
Now everytime I want to debug my Laravel project, at least the part where it connects to the WordPress one, I have to deal with the debugging getting interrupted by WordPress's wp-cron.php
all the time. I can't for the life of me find a way to tell PhpStorm to not listen to connections from that WordPress project now that I accidentally allowed it once.
Is there any way to do this?
Or for example if I have domain1.test
and domain2.test
, is there any way to tell PhpStorm to just listen to domain1.test
and NOT any other domain (or remove other domains if accepted?)
Settings/Preferences | PHP | Servers
only has the correct domain entry.Settings/Preferences | PHP | Debug | Ignore external connections through unregistered server configurations
.