How to install CentOS Web Panel?
CentOS Web Panel (CWP) is a free web hosting control panel that offers easy managemet of multiple servers (both Dedicated and VPS) without the need to access server through SSH…
Htaccess tips and tricks
Block IP: <RequireAll> Require all granted Require not ip 1.2.3.4 </RequireAll> Force www, or non www, redirect. #Force www: RewriteEngine on RewriteCond %{HTTP_HOST} ^example.com RewriteRule ^(.*)$ http://www.example.com/$1 #Force www: #Force…
OVH server not booting with centos7.6 kernel
One of our client was facing issue with OVH kernel. After rebooting the server it’s not coming up with normal kernel. I have checked the server using IPMI console and…
How to password protect directories in helm control panel
Log into your HELM control panel. Click the domains icon from the user’s menu and select the domain from the list. Under the Domain Menu, click the FTP Accounts icon.…
How to Set Bash Prompt in Linux
The default bash prompt is kind of bare and doesn’t tell you much. SSH to your machine. # set the prompt export PS1="\\$ "
How to Recover from mysql log read failure
If you deal with MySQL master/slaves a lot you may run into the following error. Relay log read failure: Could not parse relay log event entry. To fix this you…
How to Install Softaculous on CentOS with cPanel?
Softaculous will allow your web hosting users to easily install many web scripts. Before proceeding, you need to make sure that cPanel PHP Loader should be set to IonCube from…
How to use Yum Commands to Disable and Remove Package Repositories on CentOS?
YUM also called as Yellowdog Updater, Modified is a default package management system which is mostly used in all versions of CentOS to install and update packages and repositories. With…
How to export/import MySQL database with correct character set on Linux?
To Export/Import MySQL database with correct character set on Linux export your database with the correct character set is important to avoid any kind of problems with data that has…