Re: [PHP] Re: multiple sessions on same server/domain

2005-01-24 Thread Richard Lynch
Jordi Canals wrote: > On Fri, 21 Jan 2005 09:43:38 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> > wrote: > >> Thus my point remains: >> On a shared server, I don't need to resort to calling this function to >> hijack your Cookie/session. PHP can read the raw session files. I can >> write a PHP

Re: [PHP] Re: multiple sessions on same server/domain

2005-01-22 Thread Marek Kilimajer
Richard Lynch wrote: Marek Kilimajer wrote: COKIES, I'm talking about COOKIES. Anytime you talk about cookies or cookie files, you mean session and session files, respectively. These are completely different things, please don't intermingle them. session_set_cookie_params() ^^^ You're talk

Re: [PHP] Re: multiple sessions on same server/domain

2005-01-21 Thread Jordi Canals
On Fri, 21 Jan 2005 09:43:38 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > Thus my point remains: > On a shared server, I don't need to resort to calling this function to > hijack your Cookie/session. PHP can read the raw session files. I can > write a PHP script to read the raw sessi

Re: [PHP] Re: multiple sessions on same server/domain

2005-01-21 Thread Richard Lynch
Marek Kilimajer wrote: > COKIES, I'm talking about COOKIES. > > Anytime you talk about cookies or cookie files, you mean session and > session files, respectively. These are completely different things, > please don't intermingle them. session_set_cookie_params() ^^^ You're talking about

Re: [PHP] Re: multiple sessions on same server/domain

2005-01-20 Thread Richard Lynch
>> 2) Cookie security, so user1 can read user2's cookie files > > Something like above, but cookies are not files as I'm sure you know ;) > (though they are stored somewhere, this is just implementation). They are stored in files, by default, though you can put them in a database, or whatever you

Re: [PHP] Re: multiple sessions on same server/domain

2005-01-20 Thread Marek Kilimajer
Richard Lynch wrote: Marek Kilimajer wrote: Jason Barnett wrote: Valter Toffolo wrote: ok i have one server with a single domain, each user have it's home with a public_html so i get mydomain.com/~user1/ and mydomain.com/~user2/ and so on. but each user might like to use sessions so how can i make

Re: [PHP] Re: multiple sessions on same server/domain

2005-01-19 Thread Richard Lynch
Marek Kilimajer wrote: > Jason Barnett wrote: >> Valter Toffolo wrote: >> >>> ok i have one server with a single domain, each user have it's home >>> with a public_html so i get mydomain.com/~user1/ and >>> mydomain.com/~user2/ and so on. but each user might like to use >>> sessions so how can i ma

Re: [PHP] Re: multiple sessions on same server/domain

2005-01-18 Thread Marek Kilimajer
Jason Barnett wrote: Valter Toffolo wrote: ok i have one server with a single domain, each user have it's home with a public_html so i get mydomain.com/~user1/ and mydomain.com/~user2/ and so on. but each user might like to use sessions so how can i make it work so that sessions would have each one

[PHP] Re: multiple sessions on same server/domain

2005-01-18 Thread Jason Barnett
Valter Toffolo wrote: ok i have one server with a single domain, each user have it's home with a public_html so i get mydomain.com/~user1/ and mydomain.com/~user2/ and so on. but each user might like to use sessions so how can i make it work so that sessions would have each one it's own variables a