Author Topic: No Login and Password fields  (Read 5667 times)

Offline estanisgeyer

  • Newbie
  • *
  • Posts: 2
No Login and Password fields
« 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.

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: No Login and Password fields
« Reply #1 on: June 08, 2007, 10:11:27 PM »
Can we have a bit more info? Is there any thing in the error log?

Offline estanisgeyer

  • Newbie
  • *
  • Posts: 2
Re: No Login and Password fields
« Reply #2 on: June 09, 2007, 07:11:49 PM »
No generate errors, nothing in logs on apache and roundcube. Strange.

Offline mags310

  • Newbie
  • *
  • Posts: 4
Re: No Login and Password fields
« Reply #3 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!

Offline mags310

  • Newbie
  • *
  • Posts: 4
Re: No Login and Password fields
« Reply #4 on: October 05, 2007, 01:13:36 PM »
In case it helps, the front-end HTML is as follows:
Code: [Select]
<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>

Offline serdan

  • Newbie
  • *
  • Posts: 3
Re: No Login and Password fields
« Reply #5 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.


Offline serdan

  • Newbie
  • *
  • Posts: 3
Re: No Login and Password fields
« Reply #6 on: October 06, 2007, 10:10:25 AM »

Offline mags310

  • Newbie
  • *
  • Posts: 4
Re: No Login and Password fields
« Reply #7 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.

Offline mags310

  • Newbie
  • *
  • Posts: 4
Re: No Login and Password fields
« Reply #8 on: October 08, 2007, 02:13:09 PM »
Fixed it! The problem was magic_quotes_sybase set to On.

I added this line:

Code: [Select]
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.

Offline serdan

  • Newbie
  • *
  • Posts: 3
Re: No Login and Password fields
« Reply #9 on: October 08, 2007, 03:31:21 PM »
mags310, thanks a lot!