After running easyapache and all cgi's scripts failed. Fix check to see if you have suexec enabled, if so, disable it, then check your scripts. If they start working after you disable suexec, then that's the problem. if you have suexec enable and wish to used it, you need to make sure each virtual host … Continue reading error: scgiwrap: Caller must be the nobody user
whmcs SQL Error: Table ‘bunnytec_whmc554.tbltickettags’ doesn’t exist – Full Query: SELECT tag, COUNT(*) AS count FROM tbltickettags WHERE ticketid IN (1666) GROUP BY tag ORDER BY count DESC
Fix Please run the following MySQL query in phpMyAdmin to re-create the missing table: CREATE TABLE IF NOT EXISTS `tbltickettags` ( `id` int(10) NOT NULL AUTO_INCREMENT, `ticketid` int(10) NOT NULL, `tag` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB ;
Tried to update wordpress/plugins I got a wordpress window requesting FTP credentials instead
Fix suexec was not enabled in the server.
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)) {