Search results

  1. K

    Step to install Apache on Centos server

    You have to follow below steps to install Apache. First you have to install Apache with below command: # yum install httpd When your installation will complete, you have to star your Apache service as it will not automatically start. # systemctl start httpd To know the status of your Apache...
  2. K

    Steps to execute a .sh script using cpanel cron job

    First you have to check for execution permission for your script and after that you can run below cron job: 0 * * * * /home/<your_user>/public_html/yourscript.sh
  3. K

    Deny URL sequence in IIS

    In request filtering feature, we will assign maximum URL length, content request length, Query String size and many other options due to this feature. Mainly this helps to secure URL pattern from attackers. You can follow below steps to deny URL sequence: Login to Your Windows VPS server...
  4. K

    Steps to delete hidden files in cpanel

    You can follow below steps to delete hidden files: Login to cPanel Click on “Disk Usage” under “Files” section. You will see the “Sort directories” option, where you can check the used space of all directories and subdirectories. You can see the .trash folder here, you have to click on it and...
  5. K

    Error in SQL Server “The media is formatted to support 2 media families Error”

    If you are getting this error “The media is formatted to support 2 media families Error” while backing up database, then you are making a little mistake. You can follow below steps to to resolve this issue: Login to SQL server. You have to take Backup of MSSQL database in SQL server. If you...
  6. K

    Steps to change password in webmail

    Log into Webmail. Now you have to change the default webmail. If you are using Horde then you have to select Webmail from top. If you are using Roundcube then you have to select Webmail from top. On webmail home page you have to click on the option “Password & Security”. Now you have to enter...
  7. K

    How to transfer data remotely via cpanel?

    You can simply follow below steps: Login to cpanel. Click on "Backup Wizard" under "Files" section. Here you have to click on "Full backup" to take complete backup of your account. Now to remotely transfer data from one cpanel account to another account you have to choose "Remote FTP server"...
  8. K

    How to create FTP account in cpanel?

    If you want to create separate FTP account in cpanel then you can follow below steps: First login into cpanel. After that click on "FTP accounts". Here you have to enter details of your FTP account. You can also create FTP account for single directory too.
  9. K

    Disable shutdown option in Windows server

    You can follow below steps to remove shutdown option from Windows server: Login to Windows VPS server. Navigate to “Start” button >> Run. Here you have to enter gpedit.msc and press OK. A new window will open with “Local Group Policy Editor” window. Now you have to expand “Administrative...
  10. K

    Steps to download and install dotnet core 2.0 Runtime

    You can follow below steps to install runtime Dotnet Core: First you have to go through this URL and download dotnet core https://dotnet.microsoft.com/download/dotnet-core/2.0 Now run the set by double clicking on it. After installation click on “Close” button to finish it. Now its time to...
  11. K

    Steps to enable GD Library support on server

    You have to follow below steps to enable GD Library support: First you have to check that dll file of GD library extension is available or not. You have to search php_gd2.dll file in extension directory under PHP folder. If you are not able to find php_gd2.dll file then don’t worry. You can...
  12. K

    Steps to enable IIS operation logs in event viewer

    If you want to know about all the changes made in IIS server then you have to enable operation logs, you can easily check the changes in event viewer and it helps to make our task easy. You have to follow below steps to enable IIS operation logs: Login to your Windows VPS. Click on “Start”...
  13. K

    Steps to change IP address for website in Plesk

    If you want to point your domain to aother IP address in Plesk panel then you have to follow below steps: First login to Plesk panel and click on “Domains” available at left side of screen. Now click on particular domain which you want to modify. Click on “Web Hosting Access” option. Now choose...
  14. K

    How to manage multiple php versions on Windows server?

    If your website supports another version or feature of PHP then you have to install that version on your server too. In this article you can learn about managing multiple PHP version on sserver. First download latest PHP version As you know you will get default PHP 5.x version on windows...
  15. K

    Steps to update time format on Windows server

    You can follow below steps to update time format on server. On your desktop you will find current date and time at right bottom. Now click on “Date and time settings”. Under “Format” section you will find “change date and time formats”, click on it. Here you will get the entire required format...
  16. K

    Steps to update language in Windows server

    First login to your server, here we are updating language for Windows 2016 server. Click on “Start” button and then click on “Control Panel” option. In control panel you will find list of settings from which you have tochoose “Language” option. Now click on “Add a Language” button. List of...
  17. K

    Steps to update country/region in Windows server 2016

    You can easily update country/region in server but for that you have to follow below steps: On your desktop you will find current date and time at right bottom. Now click on “Date and time settings”. New windows will open where you can select country or region from list. There is no need to...
  18. K

    Steps to restart RDP service without rebooting the server

    Most of the time if we are getting any issue then we reboot the server to solve the issue or reflecting any changes on server. But if you want to save time of restarting server then you can reboot the RDP service. You can check all the three ways to restart RDP service. Option - 1: Use...
  19. K

    Steps to check classic ASP detailed error log in IIS

    You have to follow three steps from w hich you can check detailed error log: Enable IIS debugging for ASP: By default you will not get any debugging details but if you want to change it then you have to follow below steps in IIS. Login to Windows VPS. Click on IIS Manager to open it and click...
  20. K

    How to install Telnet Client on Linux Server?

    If you want to install Telnet client on Linux Server, you just have to run below command on Linux server. # yum install telnet -y // For CentOS
Top