Instructions: Account, Login and Database Connection

How to create an account

  • Open the website
  • Go to the registration page
  • Enter username, email and password
  • Confirm the registration
  • Log in with your new account

How to log in

  • Open the login page
  • Enter your username or email
  • Enter your password
  • Click the login button
  • Access your dashboard

How to connect to database

  • Open WordPress configuration file
  • Enter database name
  • Enter database username
  • Enter database password
  • Set database host
  • Save the configuration
define('DB_NAME', 'database_name');
define('DB_USER', 'database_user');
define('DB_PASSWORD', 'database_password');
define('DB_HOST', 'localhost');