Common issues and their solutions
🚨 404 Not Found / Document Root Issues
Getting 404 errors or "file not found" when accessing PostUno
Solution
Root Cause: Web server document root is not pointing to PostUno's /public directory
Fix Options:
Move contents of /public to document root (Recommended for shared hosting)
Configure virtual host (Recommended for VPS/dedicated)
Use .htaccess redirect (Quick fix)
# Option 3: .htaccess redirect (place in public_html/) RewriteEngine On RewriteRule ^(.*)$ public/$1 [L]1. "SQLSTATE[HY000] [1045] Access denied"
2. "SQLSTATE[HY000] [2002] No such file or directory"
3. "Database does not exist"
Solutions
Check Database Credentials:
# Test connection manually mysql -h localhost -u your_username -p your_database_nameVerify Database Exists:
SHOW DATABASES;
Check User Permissions:
SHOW GRANTS FOR 'your_username'@'localhost';
📧 Support Checklist - Include this info:
Platform:XAMPP, cPanel, VPS, Valet
Error message:Exact text or screenshot
PHP version:Run php -v
Server type:Apache, Nginx
Document root:Current configuration
Installation step:Where it failed
📞Contact Support
📖Knowledge Base