Search results

  1. K

    How to restart IIS with command ?

    You can follow below steps: Login to Windows VPS server. Click on “Start” button and choose “Run” command prompt. Here you have to enter iisreset command
  2. K

    Steps to start/stop application pool in Windows server

    You can follow below steps to start/stop application pool in IIS: Login to Windows VPS server. Click on IIS Manager to open it. On the left side panel you have to click on “Application Pools”. Here you can right choose particular domain for which you have to start/stop pool. On the right side...
  3. K

    Error “bash: netstat: command not found.”

    You will always get this error in linux if you haven’t install netstat command. You have to install net-tools to resolve this error, you have to run below command to install it... Centos yum install net-tools Ubuntu/Debian sudo apt install net-tools After installing net-tools you can run...
  4. K

    How can we install Joomla in cpanel?

    Softaculous is an commercial script library which help to install open-source CMS in one click. You can install Joomla easily with below steps without spending too much time on it. Login to your cPanel. Click on Softaculous App Installer. There you have to search for Joomla CMS and click on it...
  5. K

    Linux Wget command examples

    In Linux command line you have to use wget command to download all your files from remote server. There are various basic ways to use wget command: If you want to download the file in same directory: You have to use below command to download the file in current directory # wget...
  6. K

    Steps to whitelist domain in Spam Assassin

    You can follow below steps to whitelist domain for emails in cpanel: First login to cpanel. Click on “Spam Filters” under “Emails” section. Here you will find “Show Additional Configurations” option in the last. You will find this option if your hosting provider have enabled it on server. Now...
  7. K

    Error “Receiving unexpected T_STRING”

    You are getting this error because .html files are parsed as PHP file because you are using these tags "<?" or "?>" in your .html file. If you will remove these symbols from your file then this error will be resolved.
  8. K

    Resolved Error “PHP Fatal error: Cannot redeclare”

    If you are getting error “PHP Fatal error: Cannot redeclare” function the it means you are declaring same function multiple times in your code. There can ne three reasons if you are getting error: Using same function in 2 files. If you are define function in two places within same file. Two...
  9. K

    Question marks and mysterious symbol visible on site. Why?

    The main reasons of these mysterious symbols are incorrect database or page encoding. You website should have UTF-8 meta tag and also you can change page encoding. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> To resolve this error you can also add below line to your...
  10. K

    How can we enable TLS in Google Chrome and Mozilla Firefox?

    Firefox: First type "about:config" in address bar in Firefox browser. Here under “Preference Name” search for "security.tls.version.max". In front of "security.tls.version.max" you will find “Value” field where you have to enter 3. With the value of 3 your TLS version TLSv1.3 is enabled now...
  11. K

    Steps to enable CORS in your website

    CORS stands for cross-origin request in which we request for the particular resources like images or fonts from outside of the website. You can manage your website resources like images, fonts etc by using CORS. CORS on Linux server You can use below code to enable cross-domain scripting...
  12. K

    How to detect DDoS attack on Linux server?

    Login to your server via SSH Now run below command which help to find the particular IP address from which attack is going on. # netstat -anp |grep 'tcp\|udp' | awk '{print $5}' | cut -d: -f1 | sort | uniq –c Next you have to enter this command from which you can get source IP address and...
  13. K

    How to create subdomain in cpanel?

    You can follow below steps to create subdomain in cpanel: Login to cpanel. Click on “Subdomain” under “Domain” section. A new window will open where you have to enter details of your subdomain and click on “Create”.
  14. K

    How to setup FTP account in Winscp?

    Its verys easy to setup your FTP account in Winscp, for that you just have to follow below steps: First you have to download Winscp through this link: http://winscp.net You have to install Winscp in your PC or laptop and then you have to open it. You will get a window where you have to enter...
  15. K

    Steps to get Ping report in windows 7

    You can follow below steps to to get ping report about your domain or server: Click on “Start”. Now type “CMD” in search box and press enter. Your Command Prompt is open where you have to enter below command: Ping Server Hostname/IP Address
  16. K

    Want to know about activation of SSL certificate in Plesk

    You can follow below steps to activate SSL in Plesk: Login to Plesk and there you can find “Generate CSR & Private Key”, click on it. Now you will get your CSR key which you have to provide your SSL provider to get SSL certificate. After getting SSL certificate you can install it in plesk...
  17. K

    Steps to activate SSL certificate in cpanel

    You can follow below steps to activate SSL: First you have to login into cpanel. There you will find “Generate CSR & Private Key option”, click on it. Now you can give that CSR to your SSL provider and purchase SSL certificate, you can also contact your hosting provider regarding SSL. After...
  18. K

    Steps to remove your server IP address from Gmail blacklist

    If you are getting below bounce back email while sending email to Gmail then it means your server’s ip address is in blacklist. Example of 421 bounce back 421 4.7.0 [173.xxx.xxx.xx] Our system has detected that this message is suspicious due to the nature of the content and/or the links...
  19. K

    Always getting certificate error while connecting to filezilla. What is the solution?

    You are getting this error because on shared server FTP service is always bound with SSL certificate. Whenever you will use your domain name in FTP (Filezilla) you will get error message as you have to enter server name as hostname. But there i nothing to worry you can accept the certificate...
  20. K

    For Web Deploy set user permission in FTP

    You can follow below steps to resolve this issue: Login into IIS. Now click on particular website for which you want to deploy. After clicking on website you will get various options on right side of panel, click on “Edit Permissions”. In new windows click on “Security” tab and assign full...
Top