PHPStorm Allow Network Connections on Startup
Published on
Last updated on
1 min read • --- views
PHPStorm has a bug in macOS where it always asks for permission to connect to the network on every startup.
So how to fix it?
Generate a new certificate in Keychain Access
- Open Keychain Access and from the main menu open Certificate Assistant then click on Create a Certificate
- Fill out the follow:
- Name: PHPStorm-network (can be any)
- Identity: Self-Signed Root
- Certificate Type: Code Signing
- Leave the checkbox unchecked
- Click save then Continue
Assign the Certificate to PHPStorm
Open your terminal and enter the following where “PHPStorm” is the name of the Certificate you just created and the correct location for the PHPStorm.app
codesign -s "PHPStorm-network" -f /Applications/PhpStorm.app/
Now restart PHPStorm, and it will ask you one last time to verify the incoming network connections, and after that it shouldn’t ask you again!
You might also like:
How to Build an Astro.js Image Component on Vercel
--- views
Fix Astro.js image component issues when deploying to Vercel. Learn how to configure Sharp image service correctly and avoid common deployment errors.
Conventional Commits
--- views
Master Conventional Commits to write clear, structured commit messages. Learn the format, types like feat and fix, and how to automate changelog generation.
Cross-browser testing
--- views
Learn how to test your website across different browsers and devices using BrowserStack. Ensure cross-browser compatibility without maintaining a device lab.
Share it: