Search results

  1. K

    Could not issue a Let's Encrypt SSL/TLS certificate for example.com in Plesk

    If you are getting below error in Plesk while installing SSL then then you can check this article further. Error: Could not issue a Let's Encrypt SSL/TLS certificate for example.com Authorization for the domain failed. Details Invalid response from...
  2. K

    Steps to set mail delivery limit after reaching its hourly limit

    Many times when hourly limit reaches for cpanel account, cpanel provides buffer of 25% of the limit. The server will be queue around 125% of emails but then after it start rejecting emails. You can follow below steps to change settings: Login to WHM. Here go to Server Configuration >> Tweak...
  3. K

    How to Configure Plesk DNSSEC?

    DNSSEC or Domain Name System Security Extensions play crucial role in domain management. It is tasked with authenticating responses to domain name lookups. So it prevents hackers from manipulating or influencing the responses. So in a way, DNSSEC acts as a layer of security even though it isn’t...
  4. K

    A Complete Guide to Whitelisting in Cloudflare

    Cloudflare as firewalls in place that block malicious IP addresses from accessing your website or server. But they do target good and trusted IP addresses too. To prevent this from happening, you need to whitelist those IP addresses. In this article, learn all you need to know about...
  5. K

    How to Resolve the Cloudflare Code 81053 Error?

    Are you getting the 81053 Error in Cloudflare? It means that the A, or AAAA, or the CNAME already exist with the exact name. Getting this error can be frustrating. In this article, learn how to resolve this. How to Fix Cloudflare 81053 Error? The error occurs because you might have AAAA...
  6. K

    3 Ways to Stopping Emails from Cron Daemon

    Cron Daemon is a handy tool for scheduling tasks. It also sends out emails to notify the users about the developments. But at some point in time, you may get excessive emails from cron jobs. So much email can get overwhelming to manage or even read. In such cases, it’s best to stop the emails...
  7. K

    How to fix pop3 error 0x800ccc90?

    Are you facing the consistent error 0x800ccc90? Most probably, you can see this error in the MS Outlook application while configuring more than pop3 once in one profile account. It’s better to say it’s an error from Outlook Express. The most common reason for getting this error is Outlook...
  8. K

    How to Fix the SMTP Authentication Error 534?

    SMTP errors are quite common. They negatively impact the email deliverability, and hence are very frustrating. SMTP 534 errors are primarily associated with Gmail accounts. You get this error when trying to send email. In this article learn how to fix the SMTP 534 authentication error. Why the...
  9. K

    Error “Sorry, the domain is already pointed to an IP address that does not appear to use DNS servers associated with this server.”

    If you are getting “Sorry, the domain is already pointed to an IP address that does not appear to use DNS servers associated with this server.” Error then you can resolve this by following simple steps: Login to WHM. Click on “Tweak Settings”. Here you will find various tabs, choose “Domains”...
  10. K

    Steps to know the location of MySQL or MariaDB log

    You can use below steps: Login to your server via SSH as root user. You can run below command : mysql -e "show variables like '%log%';" Here you have to find the option “log_error” and you will get the log file. If you are still not able to get response then you can check mysql configuration...
  11. K

    Steps to set default text editor in Linux

    You can set any default text editor in linux according to your choice. Like if you want you can set default text editor nano or vi. You can follow below steps to set default text editor: Login to server via SSH. Now you have to open .bashrc file in any text editor. Now you have to add below...
  12. K

    Steps to check high disk usage locations

    If you want to check the locations of high disk usage then its very easy. To know the exact location where you account is using high disk space. You just have to follow below steps: Login to your account via SSH. To know your current location in directory you can use below command: cd ~ Now...
  13. K

    Fixing the ‘Failed to Connect Socket: Connection Timed Out’ Error

    When sending emails, you may encounter the ‘Failed to Connect Socket: Connection Timed Out’ error. As you may know, connection timed out errors are when the server either doesn’t respond or takes too much time to respond. In this article, learn what exactly the ‘Failed to Connect Socket’ error...
  14. K

    Error “501 Too many syntax or protocol errors “ in exim logs

    If you are getting “501 Too many syntax or protocol errors” error in your exim logs then its very easy to resolve this error. Mostly this error occurs if you copy and paste email addresses in “To” field, then it will include quotations around the email address. This will create issue and servers...
  15. K

    Steps to check inode limit with command line

    An inode count is an total number of files or directories in an account has. In inode count emails and files are also included; if you want to know the limit of inode count for your account then you can check further. Login to server via SSH. First male sure you are in home directory and for...
  16. K

    Error in PHP 'Allowed memory size exhausted'

    If you are getting this error in your PHP application then you can incease the memory limit for website. There are various ways to increase memory_limit: You can increase memory limt with .htaccess file ad PHP.ini file. But if you are using cpanel then you can directly increase memory limit...
  17. K

    Steps to install PHP composer

    You can follow below steps to install and configure PHP composer: Login to server via SSH. You can use below command to configure shell environment to use composer. Copyecho 'alias composer="php -d allow_url_fopen=On ${HOME}/composer.phar"' >> ~/.bashrcsource ~/.bashrc Now its time to...
  18. K

    Steps to add email account through shell

    First it is must to have root user access to run command. Run below command: /scripts/addpop to accomplish this.
  19. K

    How to create metabase backup in IIS 5?

    Let’s see how to create metabase backup: First click on Start button >> Programs >> Administrative tools >> Internet Services Manager. Now click on the name of computer. You have to click on “Backup/Restore Configuration” and you can see dialog box from which you can create backup of IIS 5...
  20. K

    Steps to take backup database from shell

    You can use below command to take backup of your database. # mysqldump database_name > backup.sql After that you can restore your database with below command: # mysql database_name
Top