Installing WordPress.
So you have decided to try WordPress? Awesome! I will show you how to get started quickly. let’s explain a few concepts before we dive in.
What is WordPress
WordPress is a content management system that makes it easy to build websites and manage content without writing codes. In other words, no HTML, CSS, and JavaScript instead you will focus on providing just content while your site is up and running. It is fast and open source too(anyone can contribute to it). With WordPress, anyone can build a website.
Wordpress.org or Wordpress.com
These are two different things and it confused me at first. Wordpress.com has limitations compared to Wordpress.org. I found this article that helps explain everything check it out
Prerequisite
We are using wordpress.org. This means running WordPress locally on the computer. You are going to use your computer for running and testing the WordPress site before going live. Now, what do you need to do or have?
- Install XAMP or WAMP server on your local machine.
- Verify that Apache and MYSQL is working.
- Verify that phpMyAdmin is working.
Installing WordPress
- Download WordPress at https://wordpress.org/ to get the latest version. This will download the WordPress.zip file to your local machine.
- In your C:drive, locate the XAMPP folder. Click the htdocs folder. Create a folder called “learningwordpress” inside the htdocs folder.
3. Unzip the WordPress.zip file, and copy its content into the “learningwordpress” folder.
4. WordPress uses MySQL for database. Open the XAMPP control panel, click on Start for Apache and MYSQL; click on MySQL Admin to launch the phpMyAdmin.
5. a) To set up the Database. Click on the Database button at the top of the launch.
b) Add a database name, in my case “learningword” and Click Create button.
6. Open your browser and visit your site “https://localhost/foldername” and set up configuration file for WordPress installer. Three important information needed here are:
- Database name — your database name
- Database username — use “root”
- Database password — leave it blank
Click the Submit button; run the installation, and fill in the information for your site.
7. Provide the needed information and click the Log in button.
And Voila! you have your dashboard. You can now visit your site.
I hope you enjoyed the journey…