Hi,

On Aug 8, 5:02 am, james_027 <[EMAIL PROTECTED]> wrote:
> How do I enable multiple user account login in one computer? I don't
> know what is the disadvantage if this works this way, I just need it
> for development and testing purpose.


I am using a little different approach on my dev. server. I've created
2 aliased for localhost (thanks its easy on Unix, just added entries
to /etc/hosts) and now I am working on 2 URLs:

http://dev.version:PORT/
http://admin.dev.version:PORT/

and I am running my app with:

../manage.py runserver dev.version:PORT

This means that I can login as typical user and as admin from the same
browser instance. Since domains are different, cookies are sent to
different domains and they do not mix.



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to