Re: User data shared between two websites

2007-06-22 Thread Joe
James is correct. Steps 3-5 above actually refer to automatic login(user stored in session) and session sharing, not just sharing users. However, I assumed you would want to do this as well. On Jun 21, 4:14 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 6/21/07, Petey <[EMAIL PROTECTED]>

Re: User data shared between two websites

2007-06-21 Thread James Bennett
On 6/21/07, Petey <[EMAIL PROTECTED]> wrote: > Is there a way to use the same authentication tables between multiple > sites? I want users on one of my websites to be able to use the same > login on another without duplicating the tables. Is this possible. I > couldn't tell if the add-on sites

Re: User data shared between two websites

2007-06-21 Thread Joe
Yes. You need to meet several conditions though: 1. Obviously, the settings files for both sites must point at the same database 2. The two sites can't use the same model names. If they do, they will share the data in those models as well, not just the users tables. 3. The settings files for

User data shared between two websites

2007-06-21 Thread Petey
Is there a way to use the same authentication tables between multiple sites? I want users on one of my websites to be able to use the same login on another without duplicating the tables. Is this possible. I couldn't tell if the add-on sites module could server that purpose or not.