Search results

  1. K

    Steps to resolve “MySQL Server Has Gone Away” Wordpress error

    If you want to resolve this error then you have to follow three steps: First you have to edit wp-db.php file in Wordpress After that repair your Wordpress database If your error still not resolved then you can contact your hosting provider and ask them to restore backup
  2. K

    In Windows PHP is not working for domain. How to solve this issue?

    Mos of the time this issue occur when application extensions path is setup incorrectly. The correct path should be "C:\Program Files (x86)\PHP\v5.6\php-cgi.exe" in IIS. Let’s see how to set the correct PHP extensions path: Login to remote desktop services (RDP). Now open “IIS”. You have to...
  3. K

    Steps to create usergroup in Linux (CentOS7)

    For that first you have to create group with the help of groupadd command. sudo groupadd NAME-OF-THE-NEW-GROUP Now you have to use usermod command from which we can add user to that group. usermod -a -G wheel username NOTE: Here you have to replace username with actual username.
  4. K

    Steps to create Users in Linux (CentOS7)

    Add a new user: Login to server as root user. Now you have to add new user with adduser command. adduser username Here you have to replace username with your desired user which you want to create. After creating user you have to set password for it with passwd command. passwd username You...
  5. K

    Steps to restore mysql database in cpanel

    You can follow below steps to restore mysql database: Login to cpanel. Here click on “Backup” option under “Files” section. You have to scroll your page and then you will find “Restore MySQL database backup”. Choose your backup file and upload it. It will take some time and your mysql backup...
  6. K

    Steps to repair MySQL database with phpMyAdmin

    You can follow below steps to repair your MySQL database through phpMyAdmin: Log in to cPanel. Click on “PhpMyAdmin” under “Database” section. Select particular database which you want to repair on left side. Now select tables which you want to repair or you can select all tables. After...
  7. K

    Steps to repair Mysql database in cpanel

    You can follow below steps to repair Mysql database database in cpanel: Log in to cPanel. Here in “Database” section you have to click on “MySQL databases”. A new window will open in “Modify Databases” section, now select the database from drop-down and click on “Repair the database” button
  8. K

    How to repair MySQL database in WHM?

    Steps to repair MySQL database from WHM server: Login to WHM. You will find “Repair a MySQL database” option under “SQL Services”. Now select the particular database which you want to repair and then click on “Repair Database” button.
  9. K

    Wordpress continue redirecting to wp-admin/install.php

    For Wordpress website there can be various reasons to redirecting on wp-admin/install.php continuously, this also varies according to situation. Let’s see how to resolve this issue: Check wp-config file: First of all check the wp-config file is available in your Wordpress or not. Also, cross...
  10. K

    Steps to allow logon with Services group policy and Remote Desktop Users group

    If you ever tried to login through Remote Desktop Services but you don’t have non-Admin account then surely you will get below error. Error Message To log on to this remote computer, you must be granted the Allow log on through Terminal Services right. By default, members of the Remote Desktop...
  11. K

    Steps to create MX record in Windows server

    If you want to use mail service then it is must to create MX record, let’s see how to create MX records in windows server. Login to windows server and navigate to Start >> Windows Administrative Tools. You will find “DNS” option, click on it. Choose your particular domain by double clicking on...
  12. K

    Access website via remote IIS

    You have to follow below steps: It is must to have IIS manager installed on your server or you can install it with below link: http://www.iis.net/expand/IISManager After that click on start button and after that open IIS manager. You will find File menu, click on “Connect to a Site”. Enter...
  13. K

    Steps to upgrade PHP version in Windows VPS

    According to requirement we have to upgrade PHP version for our web applications. But the important thing is to update the PHP version without affecting the current websites. In this situation we have to upgrade PHP version 5.3 to 5.4, let’s see few steps: First login to Windows VPS and after...
  14. K

    Steps to transfer files with Remote Desktop connection to Windows VPS

    You can easily transfer files from Remote Desktop connection to VPS and this is easy method while comparing to FTP and save time. First login to your Remote Desktop Connection. Click on the drop down and then choose Local Resource tab. Here you will find “More” button, click on it. Now, its...
  15. K

    Steps to connection with non standard port to Windows VPS

    On any server if you are using default port then attackers must be target your website or server easily. Like if you choose default port for Remote desktop services then intruders can easily attack your website. Windows default port is 3389 and most of the server uses this port. To resolve this...
  16. K

    Steps to create new website in WHM

    Login to WHM. Here click on Create a New Account under Account functions. Now enter your domain name and you will also get username according to your domain name. Also enter your desired password of you can also generate password. Enter your email address and then click on create.
  17. K

    Steps to add website in IIS windows

    You can follow below steps to add website in IIS; Login to Windows VPS. Click on Start >> Run >> type inetmgr. Click on “IIS Manager” and you will find connections pane. After that you have to right click on “Sites” and click on “Add Web Site”. You can add your website name which you want to...
  18. K

    Block particular IP address through IIS from accessing the website

    If you want to secure your website from accessing the particular IP address then you can do this in IIS Web Server. For that you can follow below steps: Login to your VPS server and open IIS Manager. Locate Administrative Tools >> Internet Information Services Manager You have to expand the...
  19. K

    Steps to add rDNS record in VPS server

    You have to contact your VPS server provider to create rDNS record. As you will need hostname (FQDN) and IP address for your server. Your record should be like this: mail.yourdomain.com ==> 23.54.1.0 // 23.54.1.0 IP address should be your VPS server. After adding the record, it will take 4-48...
  20. K

    Steps to increase PHP File Upload Size in windows

    You have to follow below steps: Login to VPS server as administrator. After that find php.ini file on C:\Program Files (x86)\PHP\v5.X location. In php.ini file you can search below line and edit the limit according to choice. ini_set('upload_max_size','10M'); After editing save php.ini file...
Top