Some people have run into problems with their default ini settings. We =
have mentioned some ways of solving it but I just ran across another =
which I have never needed to use but could come in handy.
There is a php function called ini_set:
string ini_set ( string varname, string newvalue)
For instance it can set the session auto start. =20
ini_set('session.auto_start',0);
More information is in the php manual. It may even be a good idea to =
purposely set the few options people tend to have trouble with in the =
session code when the user logs in.
Steve |