Fix suexec was not enabled in the server.
Day: July 24, 2018
Error Details: The Jetpack server was unable to communicate with your site [HTTP 404]. Ask your web host if they allow connections from WordPress.com.
Fix xmlrpc.php might be blocked in the server due to heavy xmlrpc attacks.
/etc/init.d/iptables: line 268: restorecon: command not found
Fix # yum install policycoreutils
webpage showing different language on different browser
In some cases web pages show different languages on different browsers. The issue is with the charset value in the script from which the page is loading. Fix change charset on the particular file from unicode to utf-8 charset=unicode shoud be changed as charset=utf-8
Upload issue with afterlogic email client
Usually this happens after a cPanel update. Fix Just restored the db of afterlogic and then set full permission for folder data in the path mentioned below. # cd /usr/local/cpanel/base/3rdparty/afterlogic/ # chmod 777 -R data
Domain example.com has exceeded the max defers and failures per hour (5/5 (100%)) allowed. Message discarded.
In a cPanel server if you find the error like this Go to the path below :- # /var/cpanel/email_send_limits After go to the path, you can see the defer file related to the domain. If you found it you can directly remove the file. After that restart the exim. # /etc/init.d/exim restart If that file … Continue reading Domain example.com has exceeded the max defers and failures per hour (5/5 (100%)) allowed. Message discarded.
PHP warning: Function ereg() is deprecated in includes/file.inc
In Php 5.3, ereg() should be replaced with preg_match better solution is using the preg_match replacement so elseif ($depth >= $min_depth && ereg($mask, $file)) { becomes elseif ($depth >= $min_depth && preg_match("/$mask/", $file)) {