Thanks for the responses,
PHP sessions are working fine I have made a test and everithing its ok.
The code for the test is:
--- session1.php
<?php
session_start();
$_SESSION['valor']="123";
header("Location: session2.php");
?>
--- session2.php
<?php
session_start();
echo "Session Value:".$_SESSION['valor'];
?>
I've also tried to put CAKE_SESSION_SAVE in cake mode but still not
working.
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Cake PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---