Hello Happycloud and everyone,
- trans_sid is set to 1
- I tried changing the PHPSESSID but it still has the same problem
- tried forcing the PHPSESSID but it does not work
- tried [url]http://[/url] etc. but it does not work
this is in fact what is happenning
-i go to index page and a session is started so the session cookie is created,
- i then pass the login details onto a login page using a form in index page so the cookie is updated with a variable in it.
-so we are still at the same session (cookie)
-now, if i have a link on the login page so that I can go back to the index page everything works fine because no new cookies are created in my c:\php\tmp dir.
-however if instead of a link I have a redirection header what it does once it gets to index is that it creates a new cookie in c:\php\tmp which is empty
-then if I try browsing the menu which is on my index page the actual PHPSESSID=44997ae0636c7a33ec008d79df3eb6f4 contains this number which is the number of the new empty cookie which has just been created after redirection as explained in the point above.
-I then have to log in and we have a viceous circle, however it instead of redirect i have a link it all works
ANOTHER QUESTION: is there a function which could stop wirtting of any more new cookies in c:\php\temp
Regards