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...
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...
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...
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...
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...
When migrating a WordPress website database import failed with the error: mysql -u USERNAME -p DB-NAME < /PATH/dump.sql ERROR 1227 (42000) at line 3258: Access denied; you need (at least one of) the SUPER privilege(s) for this operation so I...
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...
Emails sent from cPanel to yahoo users are being rejected with the following error: Messages from X temporarily deferred due to unexpected volume or user complaints – 4.16.55.1; see This happens because the IP was blacklisted by Yahoo due to...
A lot of Web Hosting providers only allow newer versions of TLS ciphers to be used, so only will be available: +no_sslv2 +no_sslv3 This is good security practice and should be followed on every cPanel setup. But if you have clients that use older...
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...