Search results

  1. K

    Migrating from Joomla to WordPress: A Complete Guide

    If you’ve built website in Joomla but thinking of migrating to WordPress, you can do it in multiple ways. But the best procedure is the one that takes minimal effort. In this article, we explain how you can migrate without writing a single line of code. Before starting, you’d need a hosting, a...
  2. K

    A Guide to Installing DotNetNuke using Plesk

    DotNetNuke (DNN) is a really useful CMS or Content Management System from Microsoft that’s used in many .NET applications. Its written in C#, and hence flexible. DNN is also open source, which gives you maximum flexibility to design and manage interactive websites, intranets, and extranets. In...
  3. K

    A Complete Guide to Configuring Custom Nameservers in Plesk for Windows Hosting

    There are certain benefits to having custom nameservers. One of them is you’d be able to allow your users to rename their servers that’d help them remember it easily. Marketing professionals and companies and also use custom name for branding. Along with that, it conceals the fact that the...
  4. K

    A Guide to Checking How Many Active Connections There are on Your IIS Website

    When checking for performance and issues, you must figure out how many active connections there are to your IIS website. If it’s too high, you should know that it’s time to work on your server. To check the number of active connections, there’s a really useful tool called Performance Monitor...
  5. K

    Reading and Cutomizing IIS Log Files: A Complete Guide

    IIS or Internet Information Services uses a logging architecture to log any event. When it does, it also uses the relevant logging module. If something goes wrong, you can inspect the logging architecture and analyze the issue. Besides the issue and the origin, you can also check the...
  6. K

    A Complete Guide to Installing and Configuring MySQL for PHP Apps on Windows IIS 7

    Many developers and administrators prefer to use MySQL server for their PHP applications on IIS 7. One of the advantages is it can also be used as an alternate database. If you’re going to use MySQL server on Windows IIS 7, learn how to install and configure MySQL the proper way for PHP. Below...
  7. K

    Will you use cPanel for encrypting email?

    Well! Email encryption works for you to protect your messages from being sent to unauthorized people. You would often hear the word “public key” which plays important role in encrypting the messages. This public key secures the messages and the recipient would decrypt them using the private...
  8. K

    Steps to enable shtml files on server

    If you want to use Server Side Includes (SSI) files on server then you can enable this feature on server. You have to enable mod_include as by default its already installed on server. For this you have to add below code in your .htaccess file: Options +Includes AddType text/html .shtml...
  9. K

    Steps to un-install ea-nginx from server

    You can easily uninstall NGINX with the help of WHM’s NGINX Manager interface. For that you have to follow below steps: Login to WHM. Click on NGINX Manager under Software. You can uninstall ea-nginx from NGINX option. For the command line you can use below command: yum erase ea-nginx
  10. K

    Steps to enable piped logging in Apache

    Piped logging means the number of open files Apache needs, if you want to reduce numberofopen filesthen you have to enable this option. Forthat you canfollow below steps: Login to WHM. Go to Apache Configuration under Service Configuration. Clink on “Piped Log Configuration” You will find...
  11. K

    Steps to disable LiteSpeed’s bandwidth Throttling for Domain

    If you want to know Litespeed’s bandwidth throttling for domain. First log into LiteSpeed’s webAdmin Console. After that go to Configuration >> Server >> Security configurations >> Per Client Throttling If you want to disable bandwidth throttling then you can set Bandwidth Throttling to “0”.
  12. K

    Ubuntu 18.04 Apache ModSecurity Setup

    Which application is used as firewall open-source? It is nothing but ModSecurity alias Modsec. Leaving all this aside, you must know the importance of a firewall. It acts as the filtering part by ignoring unauthorized access to your server. Modsec gives more offers to HyperText Transfer Protocol...
  13. K

    How to solve SQL error “The primary filegroup is full”?

    Many users will get an error in the SQL server “The primary filegroup is full”! The administrator of the database responsibility is to look at the growth and success rate of the database carefully. Based on the utilization and growth of the database, you can plan the space management and...
  14. K

    Complete Guide to Installing Roundcube on your Ubuntu 18.04 (for VPS and Dedicated Server)

    Roundcube is one of the best email clients around to use for your own purpose. It supports both SMTP and IMAP, which further increases its popularity. You can use Roundcube email client to send and receive emails and read them using a web browser. If you’re using Ubuntu version 18.04, you can...
  15. K

    Steps to enable ProxyErrorOverride via WHM

    You can follow below steps to enable ProxyErrorOverride: Login to WHM. Go to Service Configuration under Apache Configuration. Here you have to click on Include Editor. You will find Post VirtualHost Include after scrolling down and insert the below line: ProxyErrorOverride On Click on “Update”...
  16. K

    Steps to uninstall Apache module in WHM

    You can follow below steps to install Apache module: Log into WHM. Go to EasyApache 4. Here you have to click on Customize option under Currently Installed Packages. Now click on “Apache Modules”. Enter your extension which you want to uninstall. Mark it for removal with toggle icon. Click on...
  17. K

    Steps to block autodiscover / autodiscover.xml access on cpanel server

    If you want to block the access of autodiscover/autodiscover.xml then you can do this with some of directives. You have to modify the /usr/local/apache/conf/includes/post_virtualhost_global.conf file and add below code in this configuration file: Alias /htdocs_autodiscover...
  18. K

    Steps to verify that PHP mail() working or not

    If you are not sure about your PHP mail() working or not on your server then you can manually check it with coding. You can upload simple code and can check at your end. You just have to upload below code in your PHP file and then you can check, you are getting mail or not. <?php $dest =...
  19. K

    What is storage location of MySQL backup?

    If you have configured MySQL backup in Backup configuration then you have to check the location of MySQL backup. You can use below command to check the backup of your database: grep 'BACKUPDIR\|MYSQL' /var/cpanel/backups/config Here BACKUPDIR is the location where cpanel backup is available.
  20. K

    Steps to kill MySQL connections on server

    If you are making too many database connections then you will get error “too many database connections”, to resolve this error you can manually terminate database connections. Most quick and easy ways to terminate or kill MySQL connections is to restart MySQL services. You can use below command...
Top