Search results

  1. K

    How to migrate from EasyApache 3 to EasyApache 4 in WHM?

    Login to whm. Click on EasyApache 4 under Software. You can see the option EasyApache 4 Migration option. Click on “Migrate” button. You can see the popup box with “Yes, run EasyApache 4 Migration” option. You can see the message with “EasyApache 4 Migration has successfully migrated”.
  2. K

    Resolve Wordpress error: “Mysql error 28”

    Many times we can see this error while logging in wordpress dashboard. Login to cpanel. Here click on “Mysql Databases” option. Select database associated to your website under “Modify Databases”, Now click on “Repair Database”.
  3. K

    Reset SSH port to default port 22

    If you are not able to login to server with 22 port then you can reset port to default port. You ca follow below steps to reset default port from WHM. Login to WHM. After that go to below URL to reset the port. http://serverip:2086/scripts2/doautofixer?autofix=safesshrestart Here use your...
  4. K

    How can we enable “I'm under attack” mode in cloudflare?

    Cloudflare provides this feature in which cloudflare inspect the traffic and ensure that visitor is bot or not. After enabling this mode cloudflare redirect to another page for 5 seconds to check the visitor is valid or not and then allow it. Check the steps to enable it: Login to cloudflare...
  5. K

    Steps to take backup of single Mysql table

    You can follow below steps : You can create dump file : #mysqldump db_name table_name > table_name.sql You can create dump file from remote server: #mysqldump -u <db_username> -h <db_host> -p db_name table_name > table_name.sql You can create dump file using phpmyadmin: Cpanel >>...
  6. K

    Error: “#1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation”

    You can follow below steps to resolve this error, this error occur while running query in phpmyadmin. First you need root access to resolve this error. With root access you can make changes in configuration file with below command: vi /etc/my.cnf You have to add below line in this file...
  7. K

    Do you often get an error in WordPress as “another update currently in process”?

    Have you heard about the core process of WordPress update? If one update goes on meanwhile if you start another update, then you will receive a message as “another update currently in process”. Wait for some time to get disappeared with this message. Or else go with the below-mentioned solution...
  8. K

    How to deal with the error “Are you sure you want to do this”?

    Did you often get the error “Are you sure want to do this”? If yes, you are at the right place to deal with this error now. It's all because of one word called Nonces. Yes! Its security-based unique keys used widely for protecting the URL’s of WordPress, ajax calls and forms. Themes or Plugin...
  9. K

    Here’s How to Resolve the Recovery Pending State in SQL Server Database

    SQL server database is a widely used database because of its advanced and well-organized features. It helps maintain data integrity in a secured mode. But from time to time, you’re going to come across some roadblocks, which might disrupt your workflow. In this article, learn what the “Recovery...
  10. K

    How to Disabling Mod_security in Apache Server?

    One of the most important Apache modules is the Mod_security, mainly because it enhances your Apache server from cyber attacks. It can effectively block common exploits like code injection attacks using regular expressions and a set of rules that you can modify. At times, you’d need to disable...
  11. K

    Are you getting an error message as “Unable to connect database” – PleskDBException?

    There is more number of reasons behind this notification such as directories of data that haven’t been restored or recovered properly, space filled up completely in the disk, and corruption in the InnoDB engine. Let’s see how to connect the database without getting an error: When you try to...
  12. K

    How to Fix PHP Has Encountered an Access Violation Error on Plesk?

    “PHP has Encountered an Access Violation at XXXXX”. You might have seen this error as an admin or user. It is a critical system issue and need to be deal with at the earliest. If left unchecked, it can lead to total system corruption. In this article, learn how to fix this access violation issue...
  13. K

    Complete Guide to Removing Nginx on Linux Using Vesta Control Panel

    Nginx is a popular load balancer used in many web servers to manage websites and web application. Besides that, it is also used as a mail proxy, reverse proxy, and HTTP Cache. At times, you’d have to uninstall this useful web server. When you get to that stage, you might be wondering how to...
  14. K

    Does your VestaCP FTP backup fail often?

    VestaCP is a top-notch hosting panel that has the feature of combining user-friendly customization altogether and a control panel flexible for all. This hosting panel is recommended for taking backup for server FTP or local. Most of the time, it ends up in configuration wrongly because of...
  15. K

    Complete Guide to Setting Up SSL In VestaCP (And Fixing Setup Errors)

    SSL certificate is a must for every website. It validates that your website is secure and trustworthy. If you’re using Vesta Control Panel, you must be wondering if installing an SSL certificate in it is quite hard. But it isn’t. As you’ll see in this guide, you can install SSL on your website...
  16. K

    Solving the “Crontab Not Sending Email” Error

    When you have a mundane, repetitive task at hand, it’s best to make use of an automated script. Behind the scenes, that’s what Cron does. It is programmed to automatically execute tasks at a particular interval or specific time. But when the tasks don’t match how it is configured, then Cron...
  17. K

    Methods of adding Cron job to VestaCP

    Before getting into the topic let us learns what Cron is and how does it work? Cron is Linux based utility that schedules a script or a command on the server to run on a specific date and time. So, a Cron job will work as a scheduled take by itself and be used for repetitive tasks...
  18. K

    How to resolve error 522 in Cloudflare

    Here in this section, we are going to explain how the error 522 in Cloudflare is resolved. Generally, these kinds of errors mainly occur due to IP blockage, bad settings in the server, overload in the server, and more. Usually, to improve the website's performance and security Cloudflare is...
  19. K

    How to Resolve Access Denied Error

    Sucuri website acts as a good web application firewall and so it performs the best in the protection of WordPress website. Since the Sucuri firewall is based on a cloud web app firewall, it will automatically stop any kind of attack attempts and hacking on the websites. Have ever come across an...
  20. K

    Ways to convert timezone in mysql

    We can change Mysql timezone by using CONVERT_TZ function. You have to use below SQL command to change timezone SELECT CONVERT_TZ( NOW(),'current-time-zone','changed-time-zone' ); If you want to change your timezone to USA new York, you can run below command. SELECT CONVERT_TZ(...
Top