Google-Chrome

SquirrelMail 1.4.21 不適用於 Google Chrome

  • April 19, 2011

我已經在我的伺服器上安裝了新版本的 SquirrelMail 1.4.21。舊版本執行良好。新版本在 IE 和 Firefox 上執行良好。但是在Google瀏覽器中,登錄後,當我嘗試從收件箱打開任何電子郵件時,它會返回此錯誤:

錯誤

您必須登錄才能訪問此頁面。

進入登錄頁面

這是 SquirrelMail 的 VirtualHost 配置:

<VirtualHost *:80>
DocumentRoot /www/webmail2.zedandzed.com
ServerName webmail2.zedandzed.com
ErrorDocument 403 http://webmail2.zedandzed.com/index.php
ErrorDocument 404 http://webmail2.zedandzed.com/index.php
ErrorDocument 405 http://webmail2.zedandzed.com/index.php
php_value session.auto_start 0
#php_value register_globals off
php_value magic_quotes_gpc off
php_value session.use_cookies 1

<Directory "/www/webmail2.zedandzed.com">
Options Indexes FollowSymLinks ExecCGI Includes MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>

</VirtualHost>

為什麼它在Google瀏覽器中不起作用?

修好了 它用於“php_value session.use_cookies 1”。我已將“session.use_cookies”值從“1”改為“0”。

這聽起來像是您瀏覽器中的 cookie 有問題。Squirrelmail 通過保存一個 cookie 來跟踪您的登錄狀態,如果它不存在,那麼您就沒有登錄。

引用自:https://serverfault.com/questions/260938