# WINDOWS MANUAL FIX COMMANDS for doraemonn.site # Use these commands if you prefer manual fixing # 1. Create database directory and file (Windows Command Prompt) md database type nul > database\database.sqlite # 2. Get your current Windows server path cd # 3. Edit your .env file manually # Find the line: DB_CONNECTION=sqlite # Add below it (replace YOUR_WINDOWS_PATH with your actual path): # DB_DATABASE=YOUR_WINDOWS_PATH/database/database.sqlite # Example: DB_DATABASE=C:/inetpub/wwwroot/doraemonn.site/database/database.sqlite # OR: DB_DATABASE=D:/websites/doraemonn.site/database/database.sqlite # Note: Use FORWARD SLASHES (/) even on Windows for better PHP compatibility # 4. Clear all Laravel caches php artisan config:clear php artisan cache:clear php artisan route:clear # 5. Run fresh migrations php artisan migrate:fresh --force # 6. Add sample data (if available) php add_sample_data.php # 7. Cache for production php artisan config:cache # 8. Test the application # Visit: https://doraemonn.site # Common Windows hosting paths: # - C:/inetpub/wwwroot/yourdomain/ # - D:/websites/yourdomain/ # - C:/xampp/htdocs/yourdomain/ (if using XAMPP) # - C:/wamp64/www/yourdomain/ (if using WAMP)