Uebimiau webmail can't logon

frankie328

Verified User
Joined
Jan 16, 2006
Messages
15
Today i install DA into RHEL4.0 OS
but i don't know why i can't login Uebimiau webmail
everytime it display this error to me

ERROR (2): Header may not contain more than a single header, new line detected. (/webmail/inc/inc.php:169)

have any body can help me to fix this problam?????
thx~~
 
UUm, how do I do that :P

Header("Expires: Wed, 11 Nov 1998 11:11:11 GMT\r\n".
"Cache-Control: no-cache\r\n".
"Cache-Control: must-revalidate");

The last line here this one ==>"Cache-Control: must-revalidate");
is line 169
 
If I do that, that give's me ==>

Parse error: syntax error, unexpected ';' in /var/www/html/webmail/inc/inc.php on line 173

Line 173 ==>
<META HTTP-EQUIV=\"Expires\" CONTENT=\"-1\">";
 
just change the lines to
PHP:
Header("Expires: Wed, 11 Nov 1998 11:11:11 GMT");
header("Cache-Control: no-cache");
header("Cache-Control: must-revalidate");

or

PHP:
Header("Expires: Wed, 11 Nov 1998 11:11:11 GMT");
header("Cache-Control: no-cache, must-revalidate");
 
thank you
i have fix the problem too~~

but i have are new question

have any people know
set which file can change the default-language in login page???

thank you very much for your great help
:)
 
Back
Top