Jun 17
First SSH into your server and run :-
/scripts/fixeverything
/scripts/upcp –force
/scripts/eximup –force
if that does not fix the issue run the following commands:-
cd /usr/sbin
mv sendmail sendmail.157979
ln -s /usr/sbin/exim /usr/sbin/sendmail
mv /etc/eximmailtrap /etc/eximmailtrap.157979
All sorted, it should be.
IF NOT, then follow these,
#vi /usr/local/cpanel/base/3rdparty/squirrelmail/config/config.php
$useSendmail = false;
to:
$useSendmail = true;
restart cpanel and exim service.
Jun 17
Check the following first,
1. goto ” cd /var/lib/mysql/horde ” and check if there is a file named ” horde_sessionhandler.frm ”
2. move all the file named “horde_sessionhandler” with other name
3. Or you can goto mysql and can drop the table “horde_sessionhandler”. It will show error message some times. If so use the step 2, so that the table gets moved automatically.(Remember that if you are using step2 skip the step 3)
4. Now type in shell “mysql”
5. It will take to mysql prompt . type “use horde”;
6. copy this command and paste there :
drop table horde_sessionhandler;
CREATE TABLE horde_sessionhandler (session_id VARCHAR(32) NOT NULL, session_lastmodified INT NOT NULL,session_data LONGBLOB,PRIMARY KEY (session_id)) ENGINE = InnoDB;
flush privileges;
Quit and restart mysql
/etc/init.d/mysql restart
7. quit from mysql and restart mysql.
8. Try now… Your issue is fixed!!!!!
Jun 17
Sometimes these issue is found in cpanel servers.
If you are facing any such issues. Please restart the following services
/scripts/restartsrv_exim
/scripts/restartsrv_cppop
/scripts/restartsrv_imap
This will fix the issue.
If not,
/scripts/eximup –force
/scripts/courierup –force
Jun 17
Hangs, while sending emails.
—————————–
http://forums.cpanel.net/showthread.php?t=106101
A quick update. I was playing around with the roundcube configuration (/usr/local/cpanel/base/3rdparty/roundcube/config/main.inc.php) and noticed a workaround until the module is patched/updated. This workaround normally shouldnt work, but seems to work with the current problem in the module.
normally there is a series of lines which should read like this:
// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = ‘%u’;
or now Roundcube seems to work properly if you change it to this:
// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = ”;
If you haven’t already solved, this took me forever too. Found the answer deeper in one of the forum posts here. Need to look at compose.html in skins/default/templates. Around line 31 you’ll see the form tag with form name of form and action = “./”….. Change the action to “index.php”…
Starting working for me after that.
Jun 17
Error:
Message not sent. Server replied:
Connection timed out
110 Can’t open SMTP stream.
Solution:
If above case if you are having shell access then login to your server with root user, then edit
config file and do the changes as given below.
HTML Code:
#vi /usr/local/cpanel/base/3rdparty/squirrelmail/config/config.php
$useSendmail = false;
to:
$useSendmail = true;
restart cpanel and exim service.
Recent Comments