I have a Apache web-server 1.3.22 on a Sun SunOS 5.6 and php 4.2.2
To start a session we use
<?php
session_start();
...
?>
The problem is when we execute this page with a sertain ISP, the browser (IE or Netscape) keeps on waiting for an answer of the Apache server. On the Apache server, a seccion is opened and stays open infinitly (I have to close it manualy). At this moment it happends ones every two months.
My ISP uses a proxy to give acces to it's clients to Internet. I don't know if this proxy can cause the problem.
Problem is that I would like my code to work all the time, not depending on an ISP or the changing of of it's network. Is there a way to work arround session_start() or if there is another way to start a session.
Best regards
Pedro Alcaraz.