Hi!
I´m trying to use session_start() but everytime Apache.exe crashes. I´m using Windows 2000. Apache 1.3-something, PHP 4.1.1 (tried 4.1.0)
Have the same problem on two computers.
Any idea?
/Lanorj
I'm using apache 1.3.20 and php4.0.6 and it's running perfectly well (on that point at least :-)). Have you modified some apache conf. files? or did you let it by default? Is it crashing with just the session_start(); commande? Have you installed by yourself our with the installer.exe? Don't know actually why it crashes but maybe some more details would help us to understand...
Fred.
I fixed it 🙂
I had forgotten to change the /tmp in php.ini Silly me 🙂
Btw, is there any other way to forward/redirect/\"point\" a user to another page without using header(\"Location:.......\")?
With php, I don't know other ways, but you can do that with Javascript if you prefer: location.href="myPage.php"; or location.replace("myPage.php"); //if you don't want it to be kept in history (if I remember correctly).