Windows Defender Blocking
Solution:
- Click “More info” on Windows Defender warning
- Click “Run anyway”
- Add DAMP folder to exclusions: Windows Security → Virus & threat protection → Exclusions
This guide covers common issues you might encounter with DAMP and provides step-by-step solutions to get you back to productive development quickly.
Before diving into specific issues, run through this quick checklist:
Check DAMP Status
Open DAMP dashboard and verify all services show green status:
Verify Project Status
In the project grid, ensure your project shows:
Test Basic Connectivity
Try accessing your project:
http://my-project.local
https://my-project.local
http://localhost:port
(check port in DAMP)Check System Resources
Ensure adequate system resources:
Symptoms: Installer fails or DAMP won’t start after installation
Common Causes & Solutions:
Windows Defender Blocking
Solution:
Missing .NET Framework
Solution:
Insufficient Permissions
Solution:
Symptoms: Project creation gets stuck on “Downloading images”
Solutions:
docker system prune -a
Symptoms: “No space left on device” during project creation
Solutions:
docker system df # Check Docker disk usagedocker system prune -a # Remove unused images/containersdocker volume prune # Remove unused volumes
Symptoms: Application can’t connect to database
Solutions:
docker ps | grep mysql
.env
file has correct settingsmysql -h 127.0.0.1 -P 3306 -u username -p
Symptoms: my-project.local
doesn’t load
Diagnostic Steps:
nslookup my-project.localping my-project.local
my-project.local
is mapped to 127.0.0.1
C:\Windows\System32\drivers\etc\hosts
# Windowsipconfig /flushdns
# macOSsudo dscacheutil -flushcache
# Linuxsudo systemctl restart systemd-resolved
damp-development
When reporting issues:
Gather diagnostic information:
damp diagnostics --export # Not yet implemented
Include system information:
Provide reproduction steps: Clear steps to reproduce the issue
Submit GitHub issue: Use the issue template for complete information
Most DAMP issues are quickly resolved with the solutions in this guide. When in doubt, start with the diagnostic checklist and work systematically through the potential causes.