Tutorial

How to Create An Email List In Horde Webmail Client

Posted on

Horde helps you establish multiple address books, but you must first learn how to create email lists, which allows you to send a single email to multiple recipients. This article will guide you through the steps of creating an email list in the Horde client. Follow the following steps to create an email list in horde […]

Tutorial

How To Use The Terminal To Run PHP Commands

Posted on

If you’re looking for a way to run PHP commands from a terminal, you’ve come to the right place. Here you’ll find all the information you need about PHP commands. Methodology SSH is being used to access the server. If you are a WHM Administrator, you need to access the server via SSH as root, […]

Tutorial

How to Defragment PHP Session Files

Posted on
How to Defragment PHP Session Files

What is PHP? PHP is a popular open-source script language that can be incorporated into HTML and is ideal for Web development. PHP is a server-side scripting language for creating dynamic and interactive Web pages. Description: In certain cases, if a PHP web application is not configured properly, it will begin to accumulate unwanted PHP […]

Tutorial

How to change Prestashop Site URL

Posted on

This Knowledge base is projected to help in changing your Prestashop URL. This example is using Prestashop 1.6.1.24. Versions might differ slightly. If the Prestashop installation is still working correctly, you can use the Admin area to make this change. Log in to the admin area. Go to Preferences > SEO & URLs. Scroll down […]

Tutorial

How to Remove Multiple Files Using Command Line

Posted on

The web-based control panels have been one of the key innovations to take place in the web hosting industry. They are the best method for performing certain tasks that don’t require any specific technical background. However, certain tasks can’t easily achieved using web-based control panels like bulk file management. Managing multiple files is a bit […]

Tutorial

How to Redirect a Website from http to https?

Posted on

You can follow any of the three methods mentioned below for redirecting your website from HTTP to HTTPS- Method 1: Using a .htaccess file You can use the following code and edit the .htaccessfile for moving from HTTP to HTTPS- RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} Usually, the websites often use an HTTP protocol […]

Database

Reducing/Shrinking the Size of SQL Server Database

Posted on
SQL Server Database

The size of SQL Server Database can be reduced/shrunk using any of the following two methods- Method 1: With the help of SQL Server Management Studio Under this method, follow the steps given below for shrinking or reducing the size of SQL Server Database (.MDF and .LDF)- Step 1: Right-click the database name >>Tasks>>Shrink>>Database Step […]