Search results

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

    Complete Guide to Resending Welcome Email in WordPress

    A welcome email essentially greets a new user who signs up on your website or for the newsletter. It creates trust and authenticity in the most simplest way. However, there are times when it can end up in the spam folder, since they are receiving your emails for the very first time. In such...
  6. 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”.
  7. 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...
  8. 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
  9. 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...
  10. 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...
  11. 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...
  12. K

    Create a Password Generator for your WordPress Website: A Complete Guide

    Security is of utmost priority for every website owner. If your users are using a weaker password to log in and out of the website, it is a cause of concern. In such cases, you can add a password generator to your WordPress website so the users can generate a strong password and use it instead...
  13. K

    Creating a Custom Calculator in WordPress: A Complete Guide

    Having a calculator on your WordPress website allows web visitors to make quick calculation without leaving your website. This decreases bounce rate and increases website engagement. Such a feature would be a great addition for mortgage and payments website. If you’re wondering how you can add...
  14. 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...
  15. 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...
  16. K

    Steps to install FTP service manually on windows Server 2003

    Login to Windows server. Now click on Start >> Control Panel >> Add/Remove Programs >> Add/Remove Windows Components. Choose Application Server >> select Details. Choose Internet Information Services (IIS) and then select Details. Choose File Transfer Protocol (FTP) Service and click on OK. Now...
  17. K

    Filezilla “FTP over SSL/TLS” option

    Navigate to File >> Site Manager >> New Site. Now you have to enter all the details of your FTP account: Host: Domain name or IP address Port: 21 (21 is default FTP port) Protocol: FTP - File Transfer Protocol. Encryption: Select Required explicit FTP over TLS from the dropdown list. Logon...
  18. K

    Steps to change FTP user password in Windows Computer management

    You can follow below steps to reset FTP user password. Open “Computer Management” on Windows server. On the left pane click on Local Users and Groups >> “Users”. You will get the list of all the created FTP users in right side bar. Right click on particular user and select “Set Password” option...
  19. K

    Steps to configure passive port range on Windows server

    In this article you can learn to configure port range on windows server. Open IIS Manager and here you have to click on Connections pane. You have to click on Server tree to expand all options. On the right side of screen you will find “FTP Firewall Support icon”. A new window will open where...
  20. K

    Displaying WordPress form in Single Line

    Generally, forms will have all the details on a full page or half page. To minimize the space, you can even make a form to display in a single line. It's easy to add the single line form to develop the conversation on the most popular website. This single-line form never takes more space and is...
Top