Search results

  1. 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 >>...
  2. 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...
  3. 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(...
  4. K

    Error: YOU SHOULD UPGRADE TO MYSQL 5.5.0 OR LATER

    If you are getting error “YOU SHOULD UPGRADE TO MYSQL 5.5.0 OR LATER” in phpmyadmin then you can follow steps to resolve this issue. First check and go to below path to locate common.inc.php file. Windows server - C:\inetpub\wwwroot\phpMyAdmin\libraries\common.inc.php Linux server -...
  5. K

    Steps to set UT8MB4 for mysql

    You can check below steps to set UT8MB4 with phpMyAdmin . Login to cpanel account. You will get phpMyAdmin option under “Databases”. A new window will appear to manage your database. Here you have to select UT8MB4 Unicode and there is no need to save,it will be auto-saved.
  6. K

    Steps to repair .mdf files in SQL database.

    If you want to repair corrupt MDF files then you have to use DBCC (Database console commands) in SQL server management studio. Many DBCC commands are available like DBCC CHECKDB, DBCC DBREPAIR. To resolve this issue you can follow below steps: Open SQL server management studio. Here you will...
  7. K

    How can we rename mysql database in cpanel?

    You can follow below steps to rename mysql database: Login to cpanel. Search for “Mysql Databases” under Databases. Now select particular database which you want to rename from “Current Databases” list and click on “Rename” option. Enter your desired password and click on “Proceed” button. Now...
  8. K

    Steps to check Mysql database size via command

    Login to SSH via root. Now you have to enter below command: mysql -u username –p You will see password prompt you have to enter password of your database. You have to enter below command to display all the databases and also you can see its size in MB. You can use this command to check single...
  9. K

    How to enable “the Leave a copy of the message on the server” in outlook?

    Open Outlook. Click the File tab > Account settings. Highlight your current POP3 account and click Change. Note: The window that opens will tell you what type of email account you have. (Look under Type.) Choose More settings and click on Advanced. You should see a check box titled “Leave a copy...
  10. K

    Steps to change FTP upload path in Plesk

    You can change upload path for your FTP through : Login to Plesk. After that click on “FTP Access”. Now you have to select desired FTP account of which you have to change path. You can change path of your directory here.
  11. K

    Steps to set FTP connections in winscp

    You can follow below steps to set the concurrent connection limit through: Open WinSCP and go to the Preferences section. Next to "Other general options" click on the "Preferences" button. Go to "Transfer" >> Background. In the right pane, simply edit the value next to "Maximal number of...
  12. K

    How can we change Mysql root password via WHM?

    You can follow below steps to change Mysql root password: Login to WHM. Click on Mysql root password under “SQL services” tab. Now you have to enter new password of your Mysql database. You have to use STRONG and COMPLEX password for your database as everyone can access database. Do not use...
  13. K

    Steps to connect Mysql database via Mysql Workbench

    Mysql workbench is an Mysql client tool which helps to connect Mysql database. You can easily connect with mysql database from your computer with this mysql client. Here are the steps to use mysql client: Install mysql workbench and then open it. Click on “New Connection” and you will find...
  14. K

    Steps to integrate CDN with Joomla website

    Here are the steps to integrate Joomla website with CDN. Login to Joomla panel. Here you will find “Extensions” tab you have to click on Manage >> Install. You have to click on “Upload package file” tab, upload your zip file here and then tab on “Upload and Install”. After that you have to...
  15. K

    What are set operators? Explain.

    Basically set operators are used to join two statements. There are various types of set operators are available. Here are few set operators. UNION operators : You will get single result with combination of two SELECT statements. But this operator removes duplicate values from the result. UNION...
  16. K

    Steps to export SSL certificate from Windows server

    Here are the steps to export SSL certificate windows server: Login to RDP. Open IIS Manager. Here you will find “Server certificate” option, click on it. You will find all the SSL certificate hosted on server. Right click on the particular certificate which you want to export and click on...
  17. K

    Steps to install memcache in WHM

    You can follow below steps to install memcache in WHM: Login to WHM. Click on “Module installer” under “Software”, here you can see all the installed modules. Here click on “Manage” button in PHP Pecl module. You will find search bar in “Find a PHP Pecl”, you have to search “memcache” and click...
  18. K

    Ways to generate CSR key in DirectAdmin

    You can follow below steps to create CSR key. You have to login into DirectAdmin and go to domain account. Under Account Manager you have to click on “SSL Certificates”. Now a form will appear you have to fill this form and then click on “Save” button. After generating the CSR key you can see...
  19. K

    Steps to create another administrator account in DirectAdmin

    Login to DirectAdmin control panel. You can find another option “Create Administrator” link under “Server Management”, click on it. Fill up the following details: Username Email Address Password Re-type New Password Click on “Submit” button and your second administrator account is created.
  20. K

    How can we create Mysql database in DirectAdmin?

    You can follow below steps to create Mysql database. Login to DirectAdmin. Now click on “Mysql Management” link. Here you will find “Create New Database”, you have to click on it. Enter below details : Database Name Database Username Password of that user Re-type Password At last click on...
Top