Archive

Archive for February, 2009

roundcube Error No. [0×01F4]

February 6th, 2009

SERVICE CURRENTLY NOT AVAILABLE!
Error No. [0×01F4]

In order to solve that, you have to modify the following file:
/usr/local/cpanel/base/3rdparty/roundcube/program/include/rcube_mdb2.inc

change
return “FROM_UNIXTIME($timestamp)”;
to
return sprintf(”FROM_UNIXTIME(%d)”, $timestamp);

Cpanel Basics

How To Disable mod_security2 for a domain

February 6th, 2009

We can disable mod security for a domain, add following lines to virtual host entry.

vi /usr/local/apache/conf/httpd.conf

find the domain virtualhost entry and add

<IfModule mod_security2.c>

SecRuleEngine off

</IfModule>

save and exit

service httpd restart

Cpanel Basics