Search results

  1. K

    Steps to increase MSSQL Remote Query Timeout

    You can follow below steps to update Remote Query Timeout in MSSQL: Login to MSSQL server with SQL Server Management Studio On the left side in Object Explorer right click on particular server name and choose “Properties” option. A new window will open where you have to click on “connections”...
  2. K

    Don’t Need the Remember Me Option in WordPress Login Page? Here’s How to Remove it

    Remember Me is a handy feature in WordPress that allows users to save their login credentials on the login screen. With this, you can easily log in to your WordPress account without entering the username or the password and they’ll be applied directly from the saved ones. But in some cases, you...
  3. K

    A Complete Guide to Adding 360 Degree Images to Your WordPress Website

    360-degree images are a great way to allow web visitors to experience something virtually. They can view an image from all angles and learn more about it. If you run a WordPress website or blog, you can add such images to your web properties too. In this article, learn how to add 360-degree...
  4. K

    Customer don’t have permission to change Hosting Type in Plesk

    If you want to give permission of Hosting Type to all subscriptions in single service plan: Login to Plesk Navigate to Service Plans >> Service plan >> Now click on “Permissions” tab. Here you have to check the box “Hosting settings management” and click on “Update & Sync” button. If you want...
  5. K

    Showing blank page after clicking on Add Domain, Add Subdomain or Add Subscription

    If you are not able to create Add Domain, Add Subdomain or Add Subscription in Plesk and getting blank page, also in browser console you are getting below error: TypeError: Cannot read property 'hostingSettings' of undefined at A (AddDomainForm.js:89) For single subscription you can follow...
  6. K

    Error “SQLSTATE[HY000] [2002] No such file or directory”

    Login to server via SSH. Open my.cnf file available at /etc/my.cnf location. #log_bin = /var/log/mysql/mariadb-bin #log_bin_index = /var/log/mysql/mariadb-bin.inde #log_slow_verbosity = query_plan After that restart MySQL systemctl restart mysql
  7. K

    Here’s How You can Accept Google Pay on WordPress

    Adding Google Pay on your WordPress website will allow you to accept payments online with ease. You don’t have to do any complex coding, nor have to engage in lengthy paperworks. Both WordPress and the Google Pay software will do the heavy lifting. To start accepting payments, you need to add...
  8. K

    Want to Have Reading Progress Bar for Blogs on WordPress? Here’s How

    Many blogs and websites built using WordPress now have progress bar for the posts. They are completed as you scroll through the article, thus allowing you to keep track of how much is left for reading. If you want a similar progress bar for your WordPress site, this guide is for you. Learn how...
  9. K

    Domain’s hosting type cannot be change in plesk: Change button is not available

    Error: When you navigate to Domains >> example.com >> Hosting Settings >> Hosting type: there is no (Change) button available to set domain forwarding. Reason: The main reason behind this issue is additional domains are also available under the main subscription. If you have additional...
  10. K

    Steps to find orphan users in MSSQL Server

    Orphaned users can be mostly created while database migration when the database user is available on server but its login doesn’t available on server. You can run below query to check the orphaned users in MSSQL. USE USER DATABASE EXEC SP_CHANGE_USERS_LOGIN ‘REPORT’ GO We can fix this issue...
  11. K

    For MS-Access database location of database folder

    We always recommend “db” folder which is created with ‘www’ or ‘wwwroot’ folder for .mdb file (MS-Access database). Here are the reasons why ‘db’ folder is used for .mdb file. 1. Read/Write Access: We place database file in ‘db’ folder because system user have read-write access of this folder...
  12. K

    Steps to change MSSQL default language for users in SQL server Management studio 2012

    Sometimes we got error messages in SQL server but it was in Spanish language. If you have checked the default language of database then it’s English. Solution: The only solution for this issue is we have to update the default language to English of database user configuration. So we can check...
  13. K

    Check the entire active connections of MSSQL database

    You can follow below steps to check the active connections of MSSQL database. Login to Windows server. Open SQL Management studio. Here right click on particular database and click on execute. Now you have to run the select query to check active database connection. SELECT DB_NAME(dbid) AS...
  14. K

    Steps to change user access mode in MSSQL

    With all the database features, there is restrict database access feature is also provided by MSSQL. Normally, there are 3 access modes are available Single User, Multiple User and Restricted User. You can easily change the User access mode in MSSQL Management Studio with below steps: Login to...
  15. K

    Steps to increase email attachment size in MailEnable

    If you want to attach large file in your email then you have to increase the email attachment size in web.config file of MailEnable. You will find default attachment size is 10240KB in config file. You have to follow below steps to increase the attachment size of MailEnable: First go to...
  16. K

    Steps to change email account password in MailEnable

    You can follow below steps to change password of email account. Login to Windows server. Click on MailEnable to open it. Click on plus sign (+) to expand “PostOffice” and then click on “Domain”. Now click on MailBoxes and you will find all the available MailBoxes for that particular domain...
  17. K

    Resolved “Errcode: 28 - No space left on device”

    Error: MySQL: Error writing file '/rdsdbdata/tmp/MYZJySXi' (Errcode: 28 - No space left on device) Solution: If you are getting above error then it means there is no enough space in temp directory for MySQL. So first you have to check the used space of \tmp partition with below command. Df...
  18. K

    Steps to create email account in cpanel

    You just have to follow bllow steps to create email account: Login to cpanel. Here click on "Email Accounts" under "Emails" section. Now you will find "Create" button, click on it. You have to enter all the required details. At last, click on "Create" button.
  19. K

    Problem - Using Cloudflare loading fails in Plesk website

    People get loading time errors in Plesk whenever they use Cloudflare. Check-in Cloudflare whether the crypto setting in SSL is stated as “flexible”. The error you get down is: ERR_TOO_MANY_REDIRECTS OR The page isn’t redirecting properly You may notice that when disabling the Cloudflare the...
  20. K

    How to fix Cloudflare 304 not modified error?

    If the requested resource is not retransmitted, you might get the error Cloudflare 304 not modified. This can be a resource of the cached redirection method. The 304 not modified error occurs just because of improper communication between the website server and the user browser. It might lead to...
Top