roundcube problem

NaSRi

Verified User
Joined
Aug 16, 2014
Messages
82
In one of my server , I can't login to roundcube , the following error will appear after few seconds .

connection to storage server failed roundcube

I've checked /var/log/exim/mainlog and errorlog , there is nothing there about the login fail .

And also I've checked this tutorial .
http://help.directadmin.com/item.php?id=473

Also I've built exim , roundcube , dovecot , todovecot and finally all package ( /build all d )


It's like a weird issue !
 
Any php.ini changes, possibly with the disable_functions setting?
I've regularly seen servers with extra functions there, breaking RC's ability to work correctly.
 
@1024kb
Check /etc/hosts and make sure that ::1 is not set to "localhost".
We recommend that only 127.0.0.1 is set to localhost.
If you have a ::1 line that fine, but take out localhost from it.. (might leave behind localhost6 an other values)
 
these following functions has been disabled.

[root@server ~]# cat /usr/local/php55/lib/php.conf.d/50-webapps.ini
[PATH=/var/www/html]
session.save_path=/var/www/tmp
upload_tmp_dir=/var/www/tmp
disable_functions=exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
 
Back
Top