LF EMAIL ALERT ConfigServer Security Firewall 1 - How to disable all cPanel LFD alerts

How to disable all cPanel LFD alerts

If clients are complaining for dozens of LFD alerts from their VPS’s running cPanel here is how to completely disable those email alerts. Here are two ways to disable LFD alerts: From WHM > ConfigServer Security & FirewallFrom the...

logo centos - Permit Root login in CentOS

Permit Root login in CentOS

If you’ve installed the official CentOS image, after trying to login as root you will see the following message: “Please login as the user “centos” rather than the user “root”. Here is how to permit root login in...

what is cpanel - WHO deleted files in cPanel and where from

WHO deleted files in cPanel and where from

Check the following log files:

To check if the files were deleted using FTP

/var/log/messages

To check if the files were deleted using file manager

/usr/local/cpanel/logs/error_log

If the files were deleted using shell access

history

what is cpanel - Create bulk email accounts in cPanel

Create bulk email accounts in cPanel

Lately I’ve been dealing a lot with email accounts in cPanel: Bulk change cPanel mailbox quota for all email ✉️ accounts and Bulk delete ✉️ email forwarders in cPanel. Here is how to bulk create email accounts in...

Wordpress background web design image in Backgrounds and Textures category at pixy.org

Find older WordPress versions

This one-liner will help to find all WordPress installations running a specific version, where the current latest is 5.6 locate wp-includes/version.php | xargs grep "wp_version = " | grep -v " = '5-6'" A more efficient shell script that will scan...

PHP7.3 - New features to consider when updating from PHP7.0 to PHP7.3

New features to consider when updating from PHP7.0 to PHP7.3

PHP 7.0 PHP7.0 new features 1. Combination comparison character (<=>) Can’t compare var_dump('PHP' <=> 'Node'); // int(1) var_dump(123 <=> 456); // int(-1) var_dump(['a', 'b'] <=> ['a', 'b']); // int(0) 2. Null merge...