Hello,
I'm having a very bizarre problem. I have checked and rechecked everything but for some reason I cannot get the page to get a proper login screen.
As it's hard to explain, please checkout:
The Roundcube image contains some extra %5C% (commonly ASCII )
%5C%22skins/default/images/roundcube_logo.png%5C%22
and is not visible. The source is this
<!-- var rcmail = new rcube_webmail(); rcmail.set_env('comm_path', './?_auth=26f74d8f2cc36f7a54d8419059be64e630c5a07b&_task=mail'); rcmail.set_env('task', 'login'); //-->
</script>
</head> <body>
<img src="skins/default/images/roundcube_logo.png" id="rcmbtn104" width="165" height="55" border="0" alt="RoundCube Webmail" hspace="10" />
<div id=\"login-form\"> <form name=\"form\" action=\"./\" method=\"post\">
<p style=\"text-align: center;\"><input type=\"submit\" class=\"button\" value=\"\">
Any help would be sincerely appreciated. A complete phpinfo() can be found here: http://www.mail.ac/foo.php
Warm Regards,
-Bruno
Bruno S. Delbono wrote:
Hello,
I'm having a very bizarre problem. I have checked and rechecked everything but for some reason I cannot get the page to get a proper login screen.
As it's hard to explain, please checkout:
Fixed. The problem was with php.ini where I had
; Magic quotes for incoming GET/POST/Cookie data. magic_quotes_gpc = off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. magic_quotes_runtime = off
Set to On instead of Off. Once I reset them, it works like a charm.
Bruno S. Delbono wrote:
; Magic quotes for incoming GET/POST/Cookie data. magic_quotes_gpc = off
This doesn't matter. It works with set to on
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. magic_quotes_runtime = off
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Lesson Learned - DO NOT Set to this to On