Knowledge Base

How to Protect the htaccess File

You can prevent unauthorized access to your htaccess file by adding this rule to the file: # .htaccess protection order allow, deny deny from all satisfy all

Related: htaccess


March 2, 2023

How to Install Webmin on Linux

Webmin is a free hosting control panel with easy installation. It takes only 5 to 10 minutes, and the configuration is simple. What are the requirements? – Fresh CentOS, AlmaLinux, or Ubuntu installed on your VPS/Server. How to install Webmin? Step 1: Log in to SSH Client using your root account. Then enter these commands: yum install wget -y wget http://prdownloads.sourceforge.net/webadmin/webmin-1.990-1.noarch.rpm yum -y install perl perl-Net-SSLeay openssl perl-IO-Tty perl-Encode-Detect perl-Data-Dumper unzip perl-Encode-Detect rpm -U webmin-1.990-1.noarch.rpm Note: The installation may take a few minutes and will depend on the speed of your server. After it is done, the installation will display a message with the Webmin admin URL. Step 2: Open your Webmin URL in a browser, such as https://ip-address here:10000 If the URL doesn’t work, open port 10000 in your server’s firewall. You can do so by running the following command: firewall-cmd –zone=public –add-port=10000/tcp –permanent firewall-cmd –reload The Webmin Dashboard

Related: installation, perl


February 6, 2023

How to Create a User-friendly URL Using htaccess

If your website is using a long URL such as example.com/files/folder/sitemap.html, you can change it to “example.com/sitemap” using htaccess. Modify this line according to your needs, and then add this code to your htaccess file. RewriteEngine on RewriteRule ^sitemap/$ /files/folder/sitemap.html [L]

Related: htaccess


January 8, 2023

How to Create an Additional Web Disk Account in cPanel

You can use the cPanel’s login details to access your Web Disk. You can also create an additional account for accessing a specific directory on your account. Log in to your cPanel account. In the Files section, click on Web Disk. Under Create an Additional Web Disk Account, enter the details of the new account you wish to create. Username: Enter a username such as folderx. Password: Enter your new password or click on Password Generator to generate a random password. Directory: You can leave it blank, but it will allow access to the whole directory. Enter the directory location, such as public_html/folderx. The user will only have access to the directory path /folderx. Permissions: Select your option. Note: If you use the Windows OS, mark Enable Digest Authentication. However, if the server has an SSL certificate signed by a recognized certificate authority and you can make an SSL connection

Related: cpanel


December 1, 2022

How to Reset cPanel’s Account Password

If you have access to your cPanel account, follow these steps to reset your password: Log in to your cPanel account. In the Preferences section, click on Password & Security. Enter your old password. Enter your new password or use a password generator. Click on Change your password now. If it displays a success message, it means that the password has been changed. Now, you can access your account using the new password. Note: If you forgot your cPanel password and cannot access your account, please open a ticket with us.

Related: cpanel, security


November 28, 2022