|
Posted by Jerry Stuckle on 12/04/06 13:03
Steve JORDI wrote:
> Jerry,
>
>
>>Yes, and if your session is working, you it will be. Are you sure
>>NOTHING is sent to the browser before the session_start() call? No
>>white space, no DOCTYPE, nothing?
>
>
> Yes, the start_session() call is the first line in the code.
>
>
>
>>Enable all errors on the page by adding this at the top of your PHP code:
>>ini_set("display_errors","1");
>>error_reporting(E_ALL);
>
>
> Yes, added this but didn't change anything. no message.
> I'm using PHP4.4.4, is this the problem?
>
>
> Sincerely,
> Steve JORDI
>
> (Remove the K_I_L_LSPAM from my email address)
> ------------------------------------------------
> 1197 Prangins Email: stevejordiK_I_L_LSPAM@hotmail.com
> Switzerland WWW: www.sjordi.com
> ------------------------------------------------
> Volcanoes at www.sjordi.com/volcanoes
> MovieDB at www.sjmoviedb.com
> ------------------------------------------------
No, PHP has supported sessions for a long time.
One thing - do you have the class definition included before the
session-start() call? I didn't think about this - but you have to have
the definition in there before you start the session. And does your
php.ini file automatically start sessions? If so, this could be the
problem, also.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|