If your newly created WordPress site is not indexed by search engines, then this is the first thing that you should do. Login to your WordPress site and go to Settings » Reading page. Scroll down to the bottom of the page and make sure that the box next to… Continue Reading WordPress site is not indexed by search engines

When we enter: http://www.domain.com, the site redirects to wp-admin (https://domain.com/wp-login.php?redirect_to=https%3A%2F%2Fdomain.com%2Fwp-admin%2F&reauth=1). Please follow the below steps, if you face the above issue. 1) Check whether you are running the standard WordPress .htaccess. Here is the standard for reference: 2) Insert the below code into .htaccess. 3) Go to the browser and… Continue Reading Domain with www. redirects to wp-admin

If during installation of a plugin, WordPress asks for your hostname or FTP details. Then follow these steps:1) Login to your server and navigate to /var/www/html/wordpress/. 2) Open wp-config.php and add this line after define(‘DB_COLLATE’)3) Add the following line – define(‘FS_METHOD’, ‘direct’);4) If you get “Could not create directory” error.… Continue Reading When you try to install the plugin in wordpress site it asks for FTP credentials

1) First go to SES in AWS and create SMTP credentials. 2) You will get the SMTP username and password. Download and save it. 3) Go to email address and click on verify email address and verify it. If you want to use the already verified email address you can… Continue Reading Configure SMTP for outbound emails- BITNAMI

How to Install / Update WordPress Automatically Without Using FTP Date published: 21/08/2019 Introduction In many circumstances, you are not able to update/upgrade your WordPress and plugins to a newer version without providing your FTP connection information. This is the most common issue whereby the WordPress system can’t write to your /wp-contentfolder… Continue Reading How to Install / Update WordPress Automatically Without Using FTP

Fixed:Your PHP installation appears to be missing the MySQL extension which is required by WordPress. Date posted: 18/06/2019 Introduction To clarify that this error is more annoying after migration from easyapache 3 to easyapache 4. As a result we will get this error on all of our wordpress sites. Solution… Continue Reading Fixed:Your PHP installation appears to be missing the MySQL extension which is required by WordPress.

Solution to Fix the Character Encoding Mismatch Problem in WordPress Date posted: 29/10/2019 Introduction After switching my hosting account, therefore we might notice special / wired characters on our wordpress blog. This error is due to we have some issue with Database Character Sets in wordpress. If you are facing similar… Continue Reading Solution to Fix the Character Encoding Mismatch Problem in WordPress

How to Install WordPress Plugins what is Plugins ? A plugin is a software containing a group of functions. They can extend functionality or add new features to your WordPress websites.  WordPress plugins are written in the PHP programming language We can add the plugins in two way. One way to Add a… Continue Reading How to Install WordPress Plugins

Upgrading WordPress Manually in Centos 7 Date Posted : 20-09-2018 In this article, we are about to learn about how to upgrade WordPress version from rear end.We assuming that your have installed LAMP stack. Prerequisite : Acquaintance of WordPress,MySQL Assumptions: Centos 7 is running in your server WordPress version :… Continue Reading Upgrading WordPress Manually in Centos 7

Date Posted: 25-12-2017 In this post we will explain how to change site url in the new moved domain. Step 1: Open the wp-config.php and edit define(‘DOMAIN_CURRENT_SITE’, ‘newdomain.com’); define(‘WP_DEBUG’, false); define(‘WP_ALLOW_MULTISITE’, true); define(‘MULTISITE’, true); define(‘SUBDOMAIN_INSTALL’, false); define(‘DOMAIN_CURRENT_SITE’, ‘newdomain.com’); define(‘PATH_CURRENT_SITE’, ‘/’); define(‘SITE_ID_CURRENT_SITE’, 1); define(‘BLOG_ID_CURRENT_SITE’, 1); Step 2: Open mysql or phpmyadmin… Continue Reading Changing the Domain Name on WordPress Multi-site