Unable to connect to the MySQL database. Please check your credentials.
Connection Settings:
Host: localhost
Database: yourcvvideo
User: yourcvvideo_user1
Error: SQLSTATE[28000] [1045] Access denied for user 'yourcvvideo_user1'@'localhost' (using password: YES)
Host: localhost
Database: yourcvvideo
User: yourcvvideo_user1
Error: SQLSTATE[28000] [1045] Access denied for user 'yourcvvideo_user1'@'localhost' (using password: YES)
Quick Fix:
Step 1: Create a file named .env in your project root:
DB_HOST=localhost
DB_USER=your_actual_username
DB_PASS=your_actual_password
DB_NAME=your_actual_database
DB_USER=your_actual_username
DB_PASS=your_actual_password
DB_NAME=your_actual_database
Step 2: Import the database:
- Open PHPMyAdmin
- Create database (if it doesn't exist)
- Import COMPLETE_DATABASE_SETUP.sql
Step 3: Reload this page