Skip to main content

Command Palette

Search for a command to run...

Installing WordPress

Updated
3 min read

So you have finally decided to try WordPress? Awesome! I will give you a brief tour on how to get started. A brief housekeeping before we dive in to the matter.

What is WordPress

WordPress is a content management system that makes it easy to build websites and manage contents without writing codes . In other words, you don’t have to write HTML, CSS and JavaScript rather you focus on providing content while your site is up and running . It is fast and open source too(anyone can contribute to it). With WordPress, any one can build a website.

Wordpress.org or Wordpress.com

These are two different things and it confused me at first. Wordpress.com has limitations compare to Wordpress.org. I found these article that help explained everything. check it out

Prerequisite

So we have agreed on wordpress.org. This means you are installing WordPress locally on your computer. You are going to use your computer for running and testing the sites before going live. What do you need to have or do.

  1. Install XAMP or WAMP server on your local machine.
  2. Verify that Apache and MYSQL is working.
  3. Verify that phpMyAdmin is working.

Installing WordPress

  1. Download WordPress at https://wordpress.org/ to get the latest version . This will download the WordPress .zip file to your local machine.

2. Navigate to your XAMPP folder. Locate the htdocs folder. Create a folder “learningwordpress” inside the htdocs folder. create_folder.PNG

3. Unzip the WordPress folder, copy it’s content into the “learningwordpress” folder. zip_content.PNG

4. WordPress uses MySQL for database. Open the XAMPP control panel, click on Start for Apache and MYSQL, click on the MySQL Admin to launch the phpMyAdmin. phpadmin.PNG

5. To set up the Database. Click on Database on the top of the launch. database.PNG

Add a database name, in my case “learningword” and Click Create databasecreate.PNG

6. Visit your site “https://localhost/foldername” to set up config file for WordPress installer. Three important information needed are Database name — your database name Database username — use “root” Database password — leave it blank

config.PNG

installer.PNG

Click Submit , run installation and fill in information for your Site. setup_info.PNG

Finally, go on and login success.PNG

and Voila! you have your dashboard. You can now visit your site.

I hope you enjoyed the journey…