In cPanel emails from OpenCart are bouncing back with the error message: message has lines too long for transport To fix this edit the /system/library/mail/mail.php and encase every instance of base64_encode() with chunk_split()...
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...
500 Internal Server Error on PrestaShop admin login: The first step when troubleshooting any application is to check the error logs, in my case all logs are empty, so the next step is to enable debug mode in prestashop: Open config/defines.inc.php...
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...
DupeGuru is a simple application to locate all the duplicate files on your PC and delete them easily. The hard disk may be filled with duplicate files that are useless and use valuable space. If we try to locate these files manually would be an...
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...