Search results

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

    Steps to check the location for Imagemagick

    To check the location for imagemagick: Login to server as root. After that run the below command: which convert In result you can get the path of imagemagick path.
  7. K

    Ways to restrict Remote Desktop Access

    To restrict RDP access you first have to open Windows Server control panel. First, open the Windows Server control panel. Go to System and Security And click on “Windows Defender Firewall” where you can find “Firewall configuration” option. Now click on “Advanced Settings” and then you will...
  8. K

    Steps to backup IIS configuration

    You can follow below steps: You have to click on Computer icon under IIS (Internet Information Services). Now click on “Action” and then select “Backup/Restore Configuration” option. Here you have to click on “Create backup” and enter the name of backup file. After that, click on “OK”. NOTE...
  9. K

    Steps to take postgreSQL database backup

    You have to use following command to take backup : You can use below command to take backup of postgresql database. pg_dump mydb > db.out You can use this command to restore database psql -d database -f db.out
  10. K

    Backup using WHM backup feature

    You can follow below steps: Login to WHM. Here click on “Backup” and then “Configure Backup”. Now you can enable the Backup Configuration files option. On the Configure Backup page “Enabled” the Backup Configuration Files option. These are the steps to take backup via WHM backup feature.
  11. K

    Steps to create backup file of SQL server database

    You can follow below steps: Go to Enterprise Manager and expand all SQL server databases. Now click on particular database and right click on it. Now you want to select “All Tasks” and click on “Backup Database”. You have to select “Database-complete” to take complete backup. Now click on “Add”...
  12. K

    Steps to backup copy of apache

    You can enter below command to take the backup of your https.conf file. cp -a /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak If you are Ubuntu user then you have to use below command: sudo cp /etc/apache2/apache2.conf /etc/apache2/apache2.conf.bak
  13. K

    Error “Maximum file limit has been reached on your server.”

    You can follow below steps to resolve this issue: Login to server as root user. After that edit called /etc/sysctl.conf file with below command: vi /etc/sysctl.conf Now add below line in that file: fs.file-max = 22992 Save sysctl.conf file and exit. Now to reflect the changes you have to...
  14. K

    Steps to disable core dumps on server

    You can follow below steps: Login to server. Here open /etc/init.d/http httpd file with any editor. vi /etc/init.d/httpd Now add below line: add ulimit -c 0 below ulimit –n Save the file and restart Apache services.
  15. K

    Steps to set SMTP authentication office 365

    If you want to do SMTP authentication in office 365 then you can enter below details. You need to enter the following values in your application settings for SMTP. Server/Smart Host: smtp.office365.com Port: 587 TLS/Start TLS: Enabled Username/Email address and password: Enter the sign-in...
  16. K

    SSL Certificate expires in less than 30 days

    If you get email notification of your Secure Socket Layer Certificates is going to expire. In this case you can follow below steps: Login to WHM. Here click on “Manage Secure Sockets Layer Certificates” under “Service Configuration”. Now you will click on “Reset Certificate” and check your SSL...
  17. K

    Error while accessing mails in Roundcube

    If you are getting any issue in accessing emails in Roundcube then you can run below script : /scripts/mail per username If your email account size is appears in negative for few users then you can use below command to fix this issue. /scripts/generate_maildirsize -confirm cPanelusername
  18. K

    cPanel missing icon related issue

    If you are not able to view cpanel image icon which are available before every option, then you can use belowscript to resolve this issue: /script/upcp or /scripts/upcp –force
  19. K

    Steps to resolve cpanel login issue

    If you are not able to login into your cpanel account then the first thing you can clear your browser cache and then try again. You can also try with different browse, in case your IP is blocked on server then you can try with any other internet connection too. You can try with below links...
  20. K

    Steps to prevent linking of images from website

    You can create .htaccess file and then add below code in that file: RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^https://(www.)?domain.com.*$ [NC] RewriteRule .(gif|jpg)$ – [F] Where domain.com is your domain.
Top