Hi
I'm getting nuts with my HTTP-Authentification...
I only once can type in username and pw... regardless of if they match against the user table or not - when I reload the page with the HTTP-authentification the browser already gets login datas from some cache.
I have to restart the browser to get this popup window again.
This happens with IE 5.x and 6 and Netscape 4.x and 6... so the reason must be some server configuration, or not? I have Apache 1.3.22 and PHP 4.1.0.
Anyone knows how I can prevent browser from caching the login data? I also tried this header statements but without any effect:
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Datum der Vergangenheit
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // immer geƤndert
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Pragma: no-cache"); // HTTP/1.0
Thanx for any help.
Robert