How to Deploy a Flask App on a VPS using SSH

This guide will help us deploy a flask application on a VPS via SSH. There are several ways to deploy python based apps but in this case, we will use Apache and Phusion Passenger – the same software used in shared hosting. Requirements root access to the server Ubuntu 20.04 […]

How to Create a Backup of MySQL Databases in your VPS

MySQL backups are mostly created as .sql dump files. These are flexible and can be imported to another MySQL instance or transferred$ mysql -N -e ‘show databases’ | while read dbname; do mysqldump –complete-insert –routines –triggers –single-transaction “$dbname” > /var/backups/databases/”$dbname”.sql; done around for safe keeping. The guide below will help […]

How to Migrate Emails to Cloudoon Mail Service

Cloudoon Mail Service is a very powerful email service created to be an alternative to Microsoft Exchange Email. One of the best features of Cloudoon Mail is the ability to import your emails from a previous mail service into it, so that you can have email continuity even after changing […]

How to Restore Specific Files in cPanel Using Jetbackup

Jetbackup is granular backup wizard. It allows restore of specific files. This is good since it means you if you made many changes to many fiules and you feel like restoring one to a previous state, you can do this comfortably. You dont have to worry about loosing updates on […]

How to Restore my cPanel account using Jetbackup.

We provide free backup service on shared hosting using Jetbackup. If you are experiencing an error in your website and would like to revert to an earlier date, you can follow the guide below 1.Login to cPanel and navigate to Jetbackup Section 2.Click Full Account Backups 3.Choose the date you […]

How to fix database connection errors

Databases. They are the engines behind our websites and web apps running. Our cPanel shared hosting supports MySQL and PostgreSQL databases. Sometimes, after uploading a website, you may get database connection errors. This guide will help us troubleshoot this error and resolve it To troubleshoot your database connection error, we […]

How to View Errors on a Python/NodeJS App in cPanel

Sometimes, after deploying your Python/NodeJS app in cPanel, you may get an error 500. Unfortunately, error 500 does not tell you much about whats affecting your site. This is a generic error message. You can however view the actual error behind this cryptic error 500 from your cPanel. There are […]

How To Turn On PHP Error Messages in CWP

During debugging, error messages come in very handy. A quick way to debug errors on a PHP based site is to enable error display for a short while. To do this on a website that is on CWP, use the following guide: 1.Login to your CWP user panel. The link […]

How To Enable Remote MySQL Access on a VPS

By default, MySQL does not allow users to connect to it remotely. This means, if you have a database server running MySQL, you cannot access it from your computer or any other computer directly unless it MySQL is configured to allow this. To access, you have to login to that […]

How to delist your VPS IP from blacklist

Sometimes, your VPS IP may be blacklisted due to a user you are hosting sending spam, perhaps due to a compromised email password on one of their email accounts. Such blacklists affects your VPS email delivability. This guide will show you how to delist a blacklisted IP Fixing the issue […]