Thursday, September 18, 2025

#1 installation

 Perfect πŸ‘Œ Since you’re on Windows, let’s keep it simple and stick with XAMPP + WordPress. Here’s a clear step-by-step:


πŸ–₯️ Step 1: Install XAMPP

  1. Go to πŸ‘‰ https://www.apachefriends.org/download.html

  2. Download the latest XAMPP for Windows.

  3. Run the installer → choose default settings (installation path will be C:\xampp).

  4. After install, open XAMPP Control Panel → click Start for:

    • Apache

    • MySQL

(They should turn green ✅)


πŸ—„️ Step 2: Create a Database

  1. Open your browser → http://localhost/phpmyadmin/.

  2. Click Databases tab.

  3. Type a database name (e.g., wordpress_db) → click Create.


πŸ“‚ Step 3: Download WordPress

  1. Download from πŸ‘‰ https://wordpress.org/download/.

  2. Extract the ZIP file.

  3. Copy the wordpress folder to:

    C:\xampp\htdocs\
    

    (you can rename it, e.g., mywordpress)


🌐 Step 4: Run WordPress Installer

  1. In browser, go to:

    http://localhost/wordpress
    

    or (if renamed):

    http://localhost/mywordpress
    
  2. Select language → click Continue.

  3. Enter database info:

    • Database Name: wordpress_db

    • Username: root

    • Password: (leave blank)

    • Host: localhost

    • Table Prefix: wp_

  4. Click SubmitRun the installation.


πŸ‘€ Step 5: Set Up Admin

  1. Fill in:

    • Site Title

    • Username (e.g., admin)

    • Password

    • Email

  2. Click Install WordPress.

  3. Once done → log in at:

    http://localhost/wordpress/wp-admin
    

Use your username + password.


πŸŽ‰ Done! WordPress is now running locally on your Windows machine. You can install themes, plugins, or even build your own.

πŸ‘‰ Do you want me to also show you how to set up multiple WordPress sites inside the same XAMPP (so you can test many projects)?

No comments:

Post a Comment

#8 Make WP Theme

 Perfect πŸ‘ Let’s upgrade the minimal theme with all the “nice-to-have” Astra-like enhancements so it feels more professional, flexible, an...