Hi,
I'm installing latest RoundCube and fields Login and Password not display. My PHP is version 5.2.1 and MySQL 4.1.8. Any idea?
Marcelo Geyer.
Can we have a bit more info? Is there any thing in the error log?
No generate errors, nothing in logs on apache and roundcube. Strange.
I am having the same problem. I just installed the lastest version and while the login button and RoundCube logo appear on the index page, there is no field for Username or Password.
I'm using
PHP Version 5.1.4
SQL 4.1.19
I'm able to connect to the database, there are simply no fields.
I would be so grateful if anyone could offer a suggestion. Thanks!
In case it helps, the front-end HTML is as follows:
<body>
<img src="skins/default/images/roundcube_logo.png" border="0" alt="JonesLabs Webmail" hspace="10" />
<div id="login-form">
<div class="boxtitle"></div>
<div class="boxcontent">
<form name="form" action="./" method="post">
<p style="text-align:center;"><input type="submit" class="button" value="Login" /></p>
</form>
</div>
</div>
<script type="text/javascript">
<!--
if (window.call_init)
call_init('rcmail');
//-->
</script>
</body>
same problem here
I think this is not Roundcube problem. I have 2 servers and every version of RC (01beta2, 01rc1, svn) is working good on first server. But no one works on second server. Same RC configs, but different apache and php modules included.
No errors in apache or RC logs.
I tried different databases (MySql 4, MySql 5, Postgres 8) - no effect.
browsers: Mozilla, Opera, IE - no effect.
here phpinfo(); from my servers:
working
http://www.39c.ru/phpinfo-for-rc/working.htm
not working
http://www.39c.ru/phpinfo-for-rc/notworking.htm
Thank you so much for the reply - that really is helpful.
Info for my non-working server is http://joneslabs.com/info.php.
I also tried it on the same machine with PHP 4.4.4 to no avail. Is it just the add_gui_object function? I'll keep working at it - I really love this program.
Fixed it! The problem was magic_quotes_sybase set to On.
I added this line:
ini_set('magic_quotes_sybase', 'Off');
and the fields appear. Of course, now I'm having login problems but that's another story...
This should probably be listed as a roundcube requirement.
mags310, thanks a lot!