Search results

  1. H

    How to update cPanel License Key?

    Run the following command at the command line to update cPanel License Key:
  2. H

    How to check cPanel license is active or not?

    - Go to https://verify.cpanel.net/app/verify URL in your browser to verify cpanel license - Enter your server IP to check the license status - Click “Verify License “ Check: How to update cPanel License Key?
  3. H

    How to find out VestaCP MySQL root password?

    In VestaCP MySQL root password is stored at : How to change the VestaCP MySQL root password? Use the mysql command to change password: And then you have to update the VestaCP mysql.conf file with your new password:
  4. H

    How to Leverage Browser Caching for Images, CSS and JavaScript?

    You can keep following code in your .htaccess file specifying how long the web browsers should keep images, videos, pdf, flash, CSS and JS in visitors PC or Laptop. This way the visitors's browser will keeps the most of the data, which will improve the speed of your website.
  5. H

    How to Fix Error Establishing a Database Connection in WordPress

    - If you encounter this error when trying to login to /wp-admin/ folder, then your database has been corrupted “One or more database tables are unavailable. The database may need to be repaired” Then put following code in your wp-config.php file : define('WP_ALLOW_REPAIR', true); And then...
  6. H

    How to Check the MySQL Version?

    In SSH, type: MySQL -V You can also run the following command from MySQL client : SHOW VARIABLES LIKE “%version%”;
  7. H

    Error: Webmail “User **** Is Not Authorized For ****”

    You will receive an error when accessing Horde, RoundCube or SquirrelMail from webmail on a cPanel installed server. It allows you to login. But, when you access specific email account, it shows this message/error. ' Error User mail@Domain.com is not authorized for Mail (Host: *.*.*.*)." It...
  8. H

    How to redirect HTTP to HTTPS using an .htaccess file?

    Through .htaccess you can easily redirect your http traffic to https secure layer. You can force SSL https redirection in htaccess file : RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
  9. H

    cpanel File Manger is showing Data Error

    When you log into cpanel File Manger and it shows error : Error Data - Check permission of .htaccess file it should be 644
  10. H

    MySQL error : Can’t create new tempfile: ‘*.TMD file

    If you are getting following MySQL Error : Can’t create new tempfile: ‘tablesname.TMD mysql can't create new tempfile on some tables.. File error while repairing corrupted database tables. You can use following command to fix it # myisamchk -r -f YourTable.MYI
Top