The latest version of MySQL 8.0 is available to install from the default AppStream repository. MySQL module is enabled by default on the CentOS 8 and RHEL 8 systems. We can install it using YUM command. # yum -y install @mysql # systemctl start mysqld # systemctl enable –now mysqld…
If you are planning for purchasing new hosting for your site then you don’t have only think about the budget but also think about what kind of hosting service would be best for you and the functionality of your site. If you want to host a large database of information…
Plesk control panel interacts with the below different databases so we need to take backup of all those databases : 1. psa – Plesk system database 2. apsc – Plesk application database 3. mysql – MySQL system database 4. roundcubemail – Roundcube database 5. horde – Horde database 6. atmail…
Before you make any changes to MySQL service or upgrade MySQL version, it is recommended to take full backup of MySQL databases. If any thing goes wrong then we can restore all databases from MySQL backup. Follow below steps to create backup of MySQL databases : 1. Login to ssh…
To setup Office365 with your domain you need to create below DNS records : # First you need to validate domain with TXT or MX record : If you create a TXT record, use these values: Record Type Alias or Host Name Value TTL TXT Do one of the following:…
If you want to keep the Dashboard in “English” but at the same time to display the website in another language for the visitors? If yes then this blog post is useful for you. # Login to the wp-admin WordPress Dashboard # Click Settings in the navigation menu then click the General…
Forgot the password for Joomla login ? Don’t worry, we can reset the password with the below steps : # First we need to know which database is used for Joomla. So check the configuration.php file to get database details. It is located at the root directory of your Joomla…
Here are some of the best practices that you can follow to avoid email abuse on your cPanel server. # Password Strength Configuration : If you increase the password strength, you can decrease the chance that a hacker will correctly guess passwords. WHM >> Home >> Security Center >> Password…
If you want user-friendly URLs on your site and hide .php extension then this post is useful for you. Please follow below steps to hide .php file extensions : # Open .htaccess file and add below rewrite rules RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php [NC,L] Now…
If you want user-friendly URLs on your site and hide .html extension then this post is useful for you. Please follow below steps to hide .html file extensions : # Open .htaccess file and add below rewrite rules RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.html [NC,L] Now…