Marek Kilimajer said:
I searched this group and someone suggested disabling Apache's keepalives but I don't have root on this box so that option is out.
Try to send "Connection: close" header, then the connection will be terminated by the client.
I don't understand... would I place that code in the posted PHP page, edit_agent.php?
To reiterate, no custom headers are sent with any PHP function unless there is a failure. IE bombs on a successful login (when no custom headers are sent). I'm not sure where I'd include this custom header or why.
Simply execute:
header('Connection: close');
after successful login and before any other output. This is just a shot in the dark, it might not help at all.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php