To connect website files with database ======================================= Tip: Please extract all folders first! Please Go in Web Files Folder and edit wp-config.php file and put your database connection details. You should only edit these lines of Codes: ========================================== // ** Database settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'local' ); /** Database username */ define( 'DB_USER', 'root' ); /** Database password */ define( 'DB_PASSWORD', 'root' ); /** Database hostname */ define( 'DB_HOST', 'localhost' ); ============================================ You should replace these values according to your database hosting details.