Search results

  1. K

    Complete Guide to Adding User Role Label in Comment Section in WordPress

    WordPress comes with pre-configured User Roles. So the users are automatically allotted their roles as per the preset rules. But you can change this and customize the user roles. The changes will reflect in the comments section. This makes it easier for administrators and users to communicate...
  2. K

    How to disable Magento 1.x extensions?

    In Magento various numbers of enabled extensions are already available, but if you want to install any other third party extension then you have to disable already installed one. Let’s see how to disable extensions in Magento: Login to Magento admin panel. Here click on “System” and then click...
  3. K

    Steps to enable SSL in Joomla

    You can easily enable SSL in Joomla with below steps: Login to Joomla. Click on “Global Configuration” under “System”. Here you have to select “Server” tab and locate “Server Settings” section. Now you will find “Force SSL” option, you can find None, Administrator Only and Entire site option...
  4. K

    What are Ivequota and Inode Quota?

    Ivequota shows the read/write operations in your account, it represents uploading and downloading speed of files. Whenever we will upload anything then this will affect the speed of it. Inode quota is total number of files, folders, emails etc in your account. If you will save anything in your...
  5. K

    Steps to resolve blank page issue on wp-admin

    You can get this issue if you are performed any custom modification. If you have updated themes or modules with its core files them you will get this issue. You can simply try to solve this issue. It may be possible while updating one of the plugin or theme is causing the issue so you can...
  6. K

    Steps to restrict access of your Joomla website

    If you want to make changes on your website and want to display message like maintenance mode to your clients. Then you can enable maintenance mode feature in Joomla. You can follow below steps to achieve this feature: Login to Joomla admin panel. Navigate to System >> Global Configuration...
  7. K

    Steps to set max_input_vars variable in your hosting account

    Mostly this issue arise whenever you are trying to edit the language file for website. You can follow below steps to solve this issue: You just have to login into your panel. Then go to file manager and find .htaccess file. After that you have to add below code in your .htaccess file...
  8. K

    How to Resolve the Error "Maximum Execution Time Exceeded" Using the wp-config.php file

    When you run into a WordPress issue, it may feel as though you should abandon the site. However, as you are aware, WordPress is one of the most wonderful (CMS) Content Management Systems available; you must first master the fundamentals. There are several frequent WordPress problems, including...
  9. K

    Magento 1.x SSL Enablement

    SSL certificates offer an extra layer of protection for your visitors when they sign up, check out, or engage in any other activity that requires them to disclose personal information. By handling your information of credit card, for example, consider encrypting any sensitive data and...
  10. K

    Redirect Blog Posts from HTTP to HTTPS Without the Use of Plugins: A Complete Guide

    In 2017, Google made an update to its Chrome browser. The browser started labeling websites that lacked security as insecure. And the way it checks for security is by looking for the SSL certificate. If a website has a SSL certificate, it will show a “Green” icon in the URL tab. Keeping this...
  11. K

    Steps to reduce Magento database size

    Most of the times database size of Magento website increased regularly then first you have to check log file size as it can be increase if you dont’ flush them regularly. You can flush these logs files with below steps: Login to Magento Admin panel. Here navigate to system >> configuration >>...
  12. K

    Steps to fix unlimited cpanel quota

    If you are getting this issue then you can update cpanel quota with commands. First check if /dev/root isexists or not: ll /dev/root if it does not work then you can try this: ln -s /dev/xvda /dev/root and run the /scripts/fixquotas once again. your quota issue will be fixed but if you...
  13. K

    How to enable KeepAlive in your account?

    If you want to enable KeepAlive then it is must to have cpanel account: Login to cpanel. Click on “File Manager” under “files” and then click on “public_html”. Now you will find .htaccess file and add below code in file. If you will not able to find file then create it. <IfModule...
  14. K

    Steps to connect your account via sFTP

    As we know sFTP stands for SSH file transfer protocol, we can connect server securely. For this you just need two things: You can use putty software after downloading it. You can make sftp connection easily with this. After downloading this software you have to enter your server details, you...
  15. K

    How to solve error “Cannot connect to the server” in cpanel?

    If you are getting error while accessing cpanel then there may be 2 reasons: First you have to check that cpanel port is not blocking in your ISP. You can contact your ISP regarding this and confirm. Another thing is firewall, it may be possible that your IP Address is blocking by server’s...
  16. K

    How to increase number of connections in Apache?

    To check number of connections, it is must to have root access of server. You can follow below steps to check number of connections: Login to WHM. Here click on “Apache configuration” under “Service configuration”. Now click on “Global configuration”. You can check these values Server Limit and...
  17. K

    A Complete Guide to Adding Facebook Retargeting Pixel to WordPress Website

    The true power of Facebook lies in its ability to track users. And it accomplishes this marvelous feat with the help of Pixel. If you’re running a WordPress website and driving traffic from Facebook, then you must install Pixel. It will help you retarget users and bring them back to your...
  18. K

    Customize PHP Version for Each Directory - A Complete Guide

    PHP is among the most widely used web programming languages. And just like other popular programming languages, it has multiple versions. And selecting the right version is a crucial task in itself. Certain applications may demand the use of specific PHP version. So you may want to set a...
  19. K

    Display Wordpress post ID in functions.php

    You can use the the_ID() function to check the post ID if you will add this function within the loop then it will display the current numeric ID of post. Here is the example of the post: Post Number: <?php the_ID(); ?>
  20. K

    Steps to find the post ID in Wordpress database

    There are various methods to find Wordpress post ID, you can manually find the ID, and you can use plugin to find the Post ID. If you want to find the post ID you can also do this with Wordpress database. You can follow below steps to find the post ID: Login to cpanel. Click on phpMyAdmin...
Top