Re: Using PHP session with Cake sessions

2007-10-09 Thread CakeMan
Thanks for all of you replies. if i want to use myfolder's session in cakephp files. Then what should i do ? Thanks again !! On Oct 10, 2:59 am, Travis Cline <[EMAIL PROTECTED]> wrote: > On Oct 9, 3:28 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > wrote: > > > Cake creates a new session. Check

Re: Using PHP session with Cake sessions

2007-10-09 Thread Travis Cline
On Oct 9, 3:28 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Cake creates a new session. Check PHP session_name('identifier') > function. > > Check config/core.php file. You will find CAKE_SESSION_STRING > constant. Copy the parameter into application script in "myfolder" > like this: > ses

Re: Using PHP session with Cake sessions

2007-10-09 Thread [EMAIL PROTECTED]
Cake creates a new session. Check PHP session_name('identifier') function. Check config/core.php file. You will find CAKE_SESSION_STRING constant. Copy the parameter into application script in "myfolder" like this: session_name('your identifier from cake'); session_start(); This way your applica

Using PHP session with Cake sessions

2007-10-09 Thread CakeMan
Hi Friends, i am in a bit of trouble. Here is my directory sturture :- htdocs->app,cake.( all cakephp's files/directories ) , myfolder I am creating a session in one of the file in myfolder and wants to use those session variables in cake's files. Now i have creted an session in Cakephp's