Search Results: Found 3
Files Mysteriously Missing in PHPStorm? Check Your Project View First!
2026-01-15 DP

Can't see `.env` or other dotfiles in your PHPStorm project panel? Often, it's not that the files are hidden, but that you're in the wrong view mode. This article dives into the key difference between the `Project` and `Project Files` views in PHPStorm and provides two additional methods for revealing files excluded by `.gitignore` or IDE settings. Follow this guide from DP@lib00 to easily find all your "missing" files.

Composer Script Not Running? Unveiling the `post-install-cmd` Trap and the Ultimate Solution
2025-12-23 DP

Have you ever run `composer install` only to find that your `post-install-cmd` scripts didn't execute as expected? This often happens in projects with no third-party dependencies. This article dives into the root cause of this issue and provides the ultimate solution using `post-autoload-dump`. Learn how to reliably automate configuration file copying and project initialization tasks, regardless of dependencies, using an elegant and maintainable standalone PHP script.

Modular Nginx Configuration: How to Elegantly Manage Multiple Projects with Subdomains
2025-11-29 DP

Say goodbye to bloated nginx.conf files! This guide walks you through building a clean, scalable, and modular configuration for Nginx 1.27.2. Learn how to set up unique subdomains for multiple projects, use a custom port, and simplify management by separating configuration files. The article also includes a practical tip for testing with an IP address in a development environment. Follow this guide from wiki.lib00 to get your Nginx setup organized.