Hi all
I have just installed Roundcube, and have been trying to get it to work. I have been searching this forum and hMailserver forum to help me to get it to work.
I have finally got to the login page, but thats as far as I get. When I click the submit button after entering user details, I just get returned back to the login screen. I know its not an error with login details because when I do enter the wrong credentials I get a return error "Login Failed"
Any errors in the error log?
Quote from: SKaero Any errors in the error log?
No errors. Only ones are when I tried to login with wrong credetials.
[21-Oct-2007 12:51:32 +1000] IMAP Error: Authentication for support failed (LOGIN): "a001 NO Invalid user name or password. Please use full email address as user name." in on line 0
*Bump*
I have seen this error mentioned a few times on the board with little in the way of a resolution!
Surely there must be a fix for this! ???
Cheers
:'( I'm still hoping someone can help me with this!
So am I. ???
Posted this problem over 2 months ago, and still have this error. Glad I didn't pay anything this!
Go Squirrelmail. ;D
Add localhost to these lines:
$rcmail_config['default_host'] = 'localhost';
$rcmail_config['smtp_server'] = 'localhost';
I was having this problem as well, until I stopped accessing the login page using http://localhost/roundcube and changed to http://myhost.mydomain.com/roundcube
I suspect it's a cookie thing - make sure your session_domain in main.inc.php and your "mydomain.com" in the URL you're accessing it with match up.
Did someone find a solution for this?
I've tried all proposed solutions, but no result, I can't pass the login screen.
My roundcube user is created in the roundcube database, together with a identity. I see a successfull login in my IMAP server (hmailserver), followed immediately by a logout. Is this the cause?
... I just have an problem near or identical like this ...
RC is installed in a root of a SubDomain. I call RC by mail.domain.tld
So all things with topic domain and near this are set by the following code in the main.inc.php
<?php
$rcmail_config = array();
$tempDomain = array_reverse(explode(".",$_SERVER['HTTP_HOST']));
$tempDomain = $tempDomain[1].".".$tempDomain[0];
$tempHost = "mail.".$tempDomain;
... blabla ...
$rcmail_config['default_host'] = $tempDomain;
$rcmail_config['username_domain'] = $tempDomain;
$rcmail_config['mail_domain'] = $tempDomain;
$rcmail_config['smtp_server'] = $tempDomain;
$rcmail_config['smtp_helo_host'] = $tempDomain;
... blabla ...
$rcmail_config['session_domain'] = $tempHost;
... blabla ...
?>
So all works fine at the 1st view, but...
1. If I set session_domain to tempHost or tempDomain I can't log in
-> Apache- ErrorLog don't say any about that
-> RC- userlogins say Successful login for ... :o
2. If I set session_domain to an empty string (default)
-> Apache- ErrorLog say:
once-> PHP Notice: Undefined index: HTTPS in C:\\[path to]\\iniset.php on line 56
twice-> PHP Notice: Undefined index: HTTPS in C:\\[path to]\\iniset.php on line 56, referer: mail.domain.tld
twice-> PHP Notice: Undefined index: HTTPS in C:\\[path to]\\iniset.php on line 56, referer: mail.domain.tld/?_task=mail
-> RC- userlogins say Successful login for ...
So I have try many different combinations more but ever with one of the results described before...
I belive it must be possible to get it to run without Errormessages?!?
Anybody an idea???
(sorry about my ugly english...)
PS: The tempDomain/Host thing dont's work right in MyRC at the moment. I belive rosali will fix it in the next time...
@M*I*B:
Problem has been fixed meanwhile in SVN trunk (Diff r2210:2211 for trunk/roundcubemail/program/include/iniset.php ? RoundCube Webmail ? Trac (http://trac.roundcube.net/changeset?old_path=%2Ftrunk%2Froundcubemail%2Fprogram%2Finclude%2Finiset.php&old=2210&new_path=%2Ftrunk%2Froundcubemail%2Fprogram%2Finclude%2Finiset.php&new=2211))
... hmm ...
Than it dosnt work at my side. I have exactly the new one described in the link you write down...
You won't get the NOTICE error with current SVN trunk. I believe you installed MyRoundCube which already is updated to current SVN release and you also have a default RoundCube stable installation which may throw the NOTICE error.