Why do I see files from other projects?
Hello everyone!
I have debugging working on different projects.
I am developing two projects in phpstorm. Let's name them 'A' and 'B'.
I am editing 'B'. I run 'A' in my local environment. Then the executable of 'A' appears on the edit screen of 'B' and stops at the first line.

The debugging of the chrome extension is 'disable'.
Why does 'A' appear on the edit screen of 'B'? What should I adjust?
(I am using deepl translation)
Translated with www.DeepL.com/Translator (free version)
Please sign in to leave a comment.
Please share the output of
phpinfo()run by your web server as HTML. Thanks!Thanks for your reply.
Here is the output of phpinfo()
I couldn't figure out how to publish it, so I'll give you the link to the file.
Thank you very much.
https://miso-soup.notion.site/phpinfo-024b6c5a66c146f09e58f75a6f408527
Thank you for sharing the output. The problem is that your
xdebug.remote_autostartparameter is enabled, so Xdebug starts whenever the server executes any PHP code. Disabling the parameter and restarting the server should help here.Thank you!
I set xdebug.remote_autostart in php.ini to 0
Problem solved!