How to Set Up WordPress

WordPress is a popular CMS used to build websites easily without coding. To set it up, download WordPress from the official site and place it in your server directory. Create a MySQL database and run the installer by visiting your site in the browser. Enter your database details, admin username, and password to complete the installation. Once done, you can log in to the dashboard and start customizing your site.

How to Set Up WordPress

Step 1: Download WordPress

  • Go to https://wordpress.org/download
  • Click “Download WordPress” (zip file)
  • Extract the files into your desired folder (e.g., htdocs/wordpress if using XAMPP)

Step 2: Set Up Local Server (WAMP/XAMPP)

If you’re working locally:

  • Install XAMPP or WAMP
  • Start Apache and MySQL
  • Open http://localhost/phpmyadmin
  • Create a new database (e.g., wordpress_db)

Step 3: Move WordPress Files

Place the extracted WordPress files into your server folder:

  • XAMPP: C:\xampp\htdocs\wordpress
  • WAMP: C:\wamp64\www\wordpress

Then go to:
http://localhost/wordpress

Step 4: Run WordPress Installer

  • Choose Language → Click Continue
  • Enter database details:
    • Database Name: wordpress_db
    • Username: root
    • Password: (leave empty if using XAMPP/WAMP)
    • Host: localhost
  • Click Submit and Run the Installation

Step 5: Set Admin Account

  • Site Title
  • Username
  • Password
  • Email
  • Click Install WordPress

Now go to http://localhost/wordpress/wp-admin and log in with your new credentials.

You’re Done!

You now have a working WordPress site on your local machine or server.