Search results

  1. K

    Apache not listening to particular IP address! Why?

    Normally Apache listening to all the IP address but if you are getting issue for any particular IP address then you can check the issue with below steps: Login to WHM. Go to Configuration » Apache Configuration » Reserved IPs Editor Here if you will find check with IP address then you have to...
  2. K

    Error "Using both mod_userdir and mod_ruid2 is not a supported configuration."

    If you are getting “Using both mod_userdir and mod_ruid2 is not a supported configuration.” error then must be you have enabled mod_userdir protection in WHM. Steps to enable mod_userdir protection: Login to WHM. Click on “Apache mod_userdir Tweak” under “Security Center”. Solution : You are...
  3. K

    How to take off defacement from the site of WordPress?

    It is very horrible for you to face the defacement problem in your well-working website WordPress. You can mean the defacement in the word “Vengeance”. There is a possibility of each and every website getting hacked easily. We gradually improve security to stop hackers from entering the website...
  4. K

    Here’s why you Should Avoid Nulled Themes and Plugins in WordPress (5 Reasons)

    WordPress themes are plugins can be pirated and sold at a much reduced cost. If you come across these, you’ll notice that the price is unbelievably cheap, or even free. Pirated themes and plugins in WordPress are called Nulled themes and plugins. Instead of use on a single or limited number of...
  5. K

    What to do About WordPress Website Stuck in Maintenance Mode?

    When you work on your WordPress on the backend, it’s good to put your website to Maintenance Mode. You get full control over the website without having to worry about user experience (because the website will be down). The problem arises for most WordPress administrators and site managers when...
  6. K

    Complete Guide to Updating WordPress Theme while Retaining Customization

    Updating your WordPress theme intermittently is a recommended practice. It allows you to maintain the fresh look whilst reducing security vulnerability. Many website admins have customized their themes over and over again. And when they think about updating the theme, they worry that they’ll...
  7. K

    Steps to modify Apache LogFormat

    You have to follow few simple steps to modify Apache LogFormat. For that it is must to have access of WHM panel. Login to WHM. Navigate to “Service Configuration » Apache Configuration » Global Configuration” You can make changes here, but make sure your changes should meet the Apache format...
  8. K

    Location of Mod security audit log

    If you are getting any issue and want to check audit logs then you can you can go with below path. /usr/local/apache/logs/modsec_audit.log You can check these logs with command to: cat /usr/local/apache/logs/modsec_audit.log
  9. K

    What is difference between DHTML and HTML?

    These both languages are markup language and DHTML stands for Dynamic Hypertext Markup Language and HTML stands for Hypertext Markup Language. DHMTL used to create dynamic web pages and html used to create static webpages. DHML is used for server side scripting while html have static code and...
  10. K

    What is Wordpress loop?

    Its a PHP code to display Wordpress posts, this code is used to display all the posts in a page. Here is the example of code: Below is an example of a simple WordPress Loop. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); // // Post Content here // endwhile; // end while...
  11. K

    How to resolve error 521 web server down?

    If you are getting 521 web server down error then it means clouflare trying to reach server with port 80 or 443. To resolve this issue you can whitelist cloudflare server IP address on your server so that they can make TCP connection.
  12. K

    Complete Guide to Manually Backing up your WordPress Website

    Tens of thousands of users use WordPress to manage their website, blog, or e-commerce store (via WooCommerce plugin). While managing and updating the website is important, what’s equally important -- yet neglected -- is taking proper backups. In case of disaster, you can easily restore your...
  13. K

    A Complete Guide to Disabling Comments in Your WordPress Website

    WordPress is one of the most popular Content Management Systems that allows anyone to set up a website from scratch. You can open up to the world via internet and share whatever you want to share. Users can interact with you too by sharing or commenting on your posts. When you get comments on...
  14. K

    Getting SSL Certificates for Free with Lets Encrypt

    SSL certificates are a must for any website that wants to be seen as authoritative and trustworthy. Even Google prioritizes websites with SSL certificates over others. With such certificates, you can easily encrypt your website for good. The good news is these days you don’t have to pay for SSL...
  15. K

    Complete Guide to Installing Nagios Core on CentOS 7 to Monitor Servers

    Nagios is a state-of-the-art software for monitoring IT infrastructure. It can monitor systems, networks, and other software with ease. If you’ve been using CentOS 7 as your platform, then you must use Nagios. It’s a handy tool in keeping an inventory of your servers and ensuring that you’ve got...
  16. K

    Steps to applied .htaccess directives

    Normally whenever Apache read .htaccess file the rules written in .htaccess file will be applied to all its sub-directories. You can check below example: /$usr/public_html/hosting/.htaccess Here .htaccess file located in above path and will affect all the sub-directories available in hosting...
  17. K

    How to locate NGINX manager in WHM?

    Normally, NGINX manager located in WHM: Login to WHM. Here go to “NGINX Manager” under “Software”. You can perform all below tasks in NGINX manager: Install or uninstall NGINX on server. You can also clear NGINX cache on server for particular user or for all users. You can also enable or...
  18. K

    Steps to enable Apache module “ModSecurity”

    You can follow below steps to enable ModSecurity on server. First login to WHM. Click on “ModSecurity Configuration” under “Security Center”. Here you have to check Modsecurity configuration.
  19. K

    Steps to configure ea-nginx for all websites

    You have to run below command for configuration: /usr/local/cpanel/scripts/ea-nginx config –all
  20. K

    Steps to retain previous domlogs more than a month

    You can follow below steps to remain the previous domlogs on server: Login to WHM. Go to “Tweak Settings” under “Server Configuration”. Here you have to uncheck “Remove the previous month’s archived logs from the user’s home directory at the end of each month unless configured by the user”...
Top