Roundcube Community Forum

Release Support => Pending Issues => Topic started by: estanisgeyer on June 08, 2007, 06:51:17 PM

Title: No Login and Password fields
Post by: estanisgeyer on June 08, 2007, 06:51:17 PM
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.
Title: Re: No Login and Password fields
Post by: SKaero on June 08, 2007, 10:11:27 PM
Can we have a bit more info? Is there any thing in the error log?
Title: Re: No Login and Password fields
Post by: estanisgeyer on June 09, 2007, 07:11:49 PM
No generate errors, nothing in logs on apache and roundcube. Strange.
Title: Re: No Login and Password fields
Post by: mags310 on October 05, 2007, 01:10:19 PM
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!
Title: Re: No Login and Password fields
Post by: mags310 on October 05, 2007, 01:13:36 PM
In case it helps, the front-end HTML is as follows:
<body>

<img src=&quot;skins/default/images/roundcube_logo.png&quot; border=&quot;0&quot; alt=&quot;JonesLabs Webmail&quot; hspace=&quot;10&quot; />



<div id=&quot;login-form&quot;>
<div class=&quot;boxtitle&quot;></div>
<div class=&quot;boxcontent&quot;>

<form name=&quot;form&quot; action=&quot;./&quot; method=&quot;post&quot;>


<p style=&quot;text-align:center;&quot;><input type=&quot;submit&quot; class=&quot;button&quot; value=&quot;Login&quot; /></p>

</form>
</div>

</div>

<script type=&quot;text/javascript&quot;>
<!--

if (window.call_init)
 call_init('rcmail');

//-->
</script>

</body>
Title: Re: No Login and Password fields
Post by: serdan on October 06, 2007, 09:58:22 AM
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.

Title: Re: No Login and Password fields
Post by: serdan on October 06, 2007, 10:10:25 AM
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
Title: Re: No Login and Password fields
Post by: mags310 on October 08, 2007, 01:46:00 PM
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.
Title: Re: No Login and Password fields
Post by: mags310 on October 08, 2007, 02:13:09 PM
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.
Title: Re: No Login and Password fields
Post by: serdan on October 08, 2007, 03:31:21 PM
mags310, thanks a lot!