While adding a routine from cPanel > PHPMyAdmin, I was getting this error message –#1227 – Access denied; you need (at least one of) the SUPER privilege(s) for this operation First check if event scheduler is enabled on the server:...
On Jetbackup < v5.3.0 there is a known bug with WiredTiger that jetindex is based upon, causing the jetindexd directory to grow in size when using S3 storage. If you are running out of space on the /usr partition, temporary workaround for...
You can customize Apache (2.4) virtual hosts with Include Files, by creating new include.conf file for that user or for all vhosts on your server. 💡 In the following code snippets make sure to replace: <user> with the cpanel...
Error encountered while fetching data: Disk full (/tmp/#sql-temptable-196ae-c7e7a-5e2f5.MAI); waiting for someone to free some space… (errno: 28 “No space left on device”) DBDISKUSED pcx3_wp324 0 DISKUSED 0 DB pcx3_wp324 USER...
Here is a small script that I use when migrating WordPress websites from some other panel to cPanel. I export the database on the old server and then simply copy the .sql dump file along with all other WP files from the old server to the new one...
Here is a one-liner command that will allow you to generate a new random password for an email account. Simply change the email address and hit enter. [email protected] ; uapi --user="$(/scripts/whoowns ${email#*@})" Email passwd_pop...
Step 1. Install imagemagick on the server: yum -y install ImageMagick-devel ImageMagick-c++-devel ImageMagick-perl To check if installed: /usr/bin/convert --version Step 2. Install the imagick PHP extension to all PHP versions on the cPanel server:...
Jupiter is the name of the new default cPanel theme, and one of the annoying things on this new theme is that the Statistics section on the right has no clickable links. To make the section clickable open the theme file nano...
AbuseIPDB has a free API plan that will allow you to get a list of up to 10.000 blacklisted IP addresses that are currently reported for malicious activity. On a Linux server, we can use this data to automatically block that bad IP traffic from our...
Here is a simple one-liner that will disable the greylisting feature for all cPanel accounts on the server:
for i in $(\ls /var/cpanel/users) ; do uapi --user=$i cPGreyList disable_all_domains ; done