Search results

  1. K

    Steps to optimize table in PHPMyAdmin

    If you want to optimize your created table in your database then you can simply follow this article. Login to cpanel. Here click on “PHPMyAdmin” under “Database” section. Select the “Database” which you want to optimize. Now select the particular table or you can select all links which is...
  2. K

    Steps to change primary language in cpanel

    You can follow below steps to change primary language in cpanel: Login to cpanel. Here navigate to Preferences section and click on “Change Language”. Select your desired language and then click on “Change”. Now check your cpanel you can see the updated language in cpanel.
  3. K

    Steps to use Multiple Identities in Roundcube

    You can follow below steps to use multiple identities: Login to Roundcube webmail account. Here click on “Settings” and you will see option “Identities”, you have to click on it. Now you have to click on “+” icon to create new identity. You have to enter all the information regarding...
  4. K

    How to add SPF and DKIM using cpanel script ?

    Every cpanel server has default script to enable SPF and DKIM record. You can run command to enable these scripts. DKIM and SPF records are used to enhance your domain reputation. DKIM record stands for Domain Keys Identified Mail. It contains Encryption Key and digital signature which helps in...
  5. K

    Steps to change language in Magento store

    First you have to install desired language translation to change language in Magento. You can download the package through Magento Official website. https://magento.com/. From this link download desired translation package and then click on “select” link and in next page you can download the...
  6. K

    Steps to change the language in WHM

    You can follow below steps to change language in WHM: Login to WHM. Click on “Tweak Settings” under “Server Configuration”. Here you will find “System” tab, you have to find “Server Locale” option by scrolling. And select new language from dropdown menu. At last click on “Save” button.
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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 >>...
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  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