Migrating Bitnami WordPress website from AWS EC2 to VPS Bitnami NGINX

Steps to perform during migration: Install VPS with CentOS 7 without any LAMP stack. configure the x11 window and forwarding make a directory named as /bitnami to be used as installed directory Download the WordPress NGINX stack installer from bitnami. Login as root user, installation should be done as root user to avoid later complexities.…

Configure sending mail by sendmail in Ubuntu Linux

Background: I need email functionality to send emails from the web server by querying data from MySQL database and email the result to appropriate recipient. Workaround:  Install sendmail. sudo apt-get update sudo apt-get install sendmail Install mailutils. sudo apt-get install mailutils Configure the /etc/hosts file, provide your domain name in the following format 127.0.0.1 localhost…

WordPress Tutorial: Change WordPress Site URL

Background: It might be needed to change WordPress site URL  for example from http://domain.com to http://www.domain.com and vice versa. Workaround: My test blog’s original site URL was http://tutorial.kaysariqbal.com; intend to prefix the site with www so the site will look like http://www.tutorial.kaysariqbal.com. To make Change WordPress Site URL i had to work on cPanel of…