How to Connect to Your WordPress Server on AWS using a SSH client

You created an AWS virtual server instance and installed WordPress on it. Your WordPress site is public on the internet. You still need to manage your server such as adding a free SSL certificate to your website.

In this article, I show you how you can access to your server to manage it using a SSH client. We are going to use PuTTY.

Step 1: Download PuTTY

Step 2: Install and Open PuTTY program.

[Continue Reading…]

How to Remove NoFollow From Links in WordPress Comments

By default, any links you have in your WordPress comment section have nofollow attribute. Removing nofollow attribute from links in comment section would encourage your visitors to post comments. That is because it provides backlinks to their websites. Would you remove nofollow attribute from links in comments? If the answer is yes, this tutorial is for you. This tutorial will show you how to do this without install a WordPress plugin.

Dofollow commentluv
[Continue Reading…]

How to Install a WordPress Plugin – Step by Step

What is WordPress Plugin? A WordPress plugin is a piece of software that contains functions that can be added to your WordPress easily to enhance and customize your WordPress site.

After you installed your WordPress, you can search for a WordPress plugin to add to your website. There are thousands WordPress plugin available in the official WordPress Plugin directory. You can search for the one that you want to add. This instruction will show you 2 ways to add those plugin to your WordPress site.

Method 1: Install WordPress plugin inside the WordPress admin area.

[Continue Reading…]

How to Add the Official Twitter Follow Button to Your Website

Adding Twitter Follow Button on your website makes it easy for your visitors to find your profile and follow you on Twitter directly with just a click. This will allow you to have more followers, more users, more traffic, and more engagement to your website.

What is this button do? When people click on this button, they will be able to see your twitter account information such as following/follower and a few Tweets, and then they can follow you on Twitter.

The following instruction will show you how to add this button to your website:

Step 1: Login to your Twitter account

Step 2: Go to https://publish.twitter.com/

[Continue Reading…]

How to Customize Your WordPress 404 Page

It’s important to ensure that all links on your website are accessible and functional. However, there’s always a possibility that your visitors may click on a non-existent link and end up on the 404 Error page.

When this happens, your visitors may become disoriented and leave your website, resulting in a loss of traffic. To prevent this, it’s a good idea to customize your 404 Error page with helpful information instead of relying on the default page or not having one at all.

[Continue Reading…]

How to change your WordPress password using phpMyAdmin

For any reason, you can’t access to your WordPress admin dashboard and you can’t reset your password using the WordPress UI interface. You lose control your WordPress site.

In this article, we will show you, how you can reset your WordPress password using phpMyAdmin interface. The steps are quick and easy to follow:

Step 1: Login to your phpMyAdmin dashboard

Step 2: Click on your WordPress database -> wp_users ->click on edit (the row with your WordPress username)

Update WordPress Admin Password using phpMyAdmin

Step 3: In the user_pass, change the function to MD5 and the value to your new password, then click Go

Now you should be able to login to your WordPress using your new password.

SEO Friendly URL Structure

According to Google, your website URL structure is displayed in a breadcrumbs-like format on mobile search result.

This is to help mobile searchers to understand your website better. Having a well URL structure is important. If you are using WordPress and your site is new, you should update your permalink to use the following link structure

/%category%/%postname%/

To update your permalink, you can login and update at “Settings -> Permalinks” as follow and click “Save Changes

WordPress Custom Structure

How to Add Facebook Like Button in WordPress

Adding a Facebook Like button to your WordPress website will allow your visitors to like and share your content on Facebook. You can add this Facebook Like button with this plugin or manually modify your template. In this article, we will show you how to do it by adding it to your WordPress template manually.

Step 1: Open the Facebook Like button configuration page

Step 2: Scroll down to “Like Button Configurator” to configure your Facebook Like button layout and size. You can leave the “URL to Like” box empty. The URL will be dynamically generated when a user click like

[Continue Reading…]

How to change the WordPress default media folder

By default, your WordPress upload folder is located at wp-content/uploads. Every time, you upload an image, your image will be uploaded to wp-content/uploads. You can change this default location by modifying your wp-config.php file:

Find:

require_once(ABSPATH . 'wp-settings.php');

Add the following code before the above line:

define('UPLOADS', 'yourNewImagesPath');

Now, every time you upload an image within your WordPress admin dashboard, your image will be saved at your new location.

How to add free SSL certificate from Let’s Encrypt to WordPress on AWS

Adding SSL certificates to your website is now important. This will enable your visitors to communicate with your website securely. Since Google now consider SSL as one of its ranking factors, this implementation will help improve your SEO ranking.

The following instruction is for WordPress site on AWS that was deployed using Bitnami stack.

Step 1: Login to your AWS server using a SSH client

Step 2: Install Git

sudo apt-get install git
[Continue Reading…]
Page 1 of 2 1 2