cPanel

cPanel is an online Linux-based control panel that simplifies website and server management.

cPanel allows you to publish websites, manage domains, organize web files, create email accounts, and more.

www.cpanel.net

install docker on cpanel - Install Docker on cPanel

Install Docker on cPanel

Side note: I think it’s a bad idea to run Docker on cPanel because, if a user is given root access inside the container, they are just one kernel exploit away from gaining control of the entire server. 1. Install Docker on cPanel From the...

chrome N0XcJxovNQ - How to find out which email filter is triggered in cPanel

How to find out which email filter is triggered in cPanel

When you have 30+ email filters set in cpanel, and you want to know exactly which one was triggered here is how to test: Step 1. Find the email location. Inside your Webmail look for the View Source or View Original option: Or navigate to the files...

chrome KRZ656D7Vo - How to Enable/Disable debug mode in CakePHP

How to Enable/Disable debug mode in CakePHP

To enable debug mode in CakePHP go to config folder and open app.php find ‘debug’ => filter_var(env(‘DEBUG’, false), FILTER_VALIDATE_BOOLEAN), and change the value of debug false to true Older CakePHP versions To enable...

chrome 7KylPVg1w7 - Where are individual email filter files on a cPanel server

Where are individual email filter files on a cPanel server

Recently I did an article on Where are autoresponders and forwarders files on a cPanel server but what about email filters? Filter files for individual email accounts do not exist by default, but are created when user adds filters or cpanel user...

chrome cIwEe6Mvbr - How to add custom logo to cPanel login page

How to add custom logo to cPanel login page

To add a custom logo to the cPanel login page you can either overwrite the default cPanel logo or upload a new one from WHM. How to overwrite cPanel login logo To overwrite the default logo, simply upload the file in the same folder: 1. SFTP to your...

image 39 - PHPMyAdmin doesn't show all databases in cPanel

PHPMyAdmin doesn’t show all databases in cPanel

New databases that are created in cPanel are not visible in PHPMyAdmin, but if you assign a user to it and access it as that user, then you can use it. The first thing to check is if the database is visible via CMD: mysql -uCPANEL_USERNAME -p If the...

lastlogin cpanel plugin example - How to create a cPanel plugin

How to create a cPanel plugin

You don’t need to be a system administrator or a cPanel expert to create your own cPanel plugin. Anyone who can write PHP code should have no trouble building a plugin. Within a day, I have created my first plugin: LastLogin – which...