Hi mdipierro, Thank's for your help.

However, the problem is the same.

Please, do you have other idea?

On 13 feb, 12:34, mdipierro <mdipie...@cs.depaul.edu> wrote:
> Please one more try.... replace:
>
> def login(): return dict(form=t2.login())
>
> with
>
> if t2.logged_in:
>     cache.ram('client:%s' % t2.person_email, lambda:request.client,
> -1)
>
> def login():
>     if request.vars.email:
>         client=cache.ram('client:%s' %
> request.vars.email,lambda:request.client, 300) ### retrieve client
> email
>         if client and client!=request.client:  ### if no match,
> forcelogout
>              session.flash="sorry, somebody else is currently logged
> in as you"
>              redirect(URL(r=request))
>     return dict(form=t2.login())
>
> On Feb 13, 11:47 am, mdipierro <mdipie...@cs.depaul.edu> wrote:
>
> > I guess I need to try this myself before sending it. Sorry I have not
> > done so. I will test it, debug it and get back to you.
>
> > massimo
>
> > On Feb 13, 11:27 am, drayco <antrod...@gmail.com> wrote:
>
> > > Sorry, I tested it again and the problem is the same.
>
> > > Please, Do you have other suggestion?
>
> > > On 13 feb, 07:58, mdipierro <mdipie...@cs.depaul.edu> wrote:
>
> > > > My Bad. Please try this. replace the login() function
>
> > > > def login(): return dict(form=t2.login())
>
> > > > with
>
> > > > if t2.logged_in:
> > > >     cache.ram('client:%s' % t2.person_id, lambda:request.client, 0)
> > > > ### store client ip in cache
>
> > > > def login():
> > > >     if request.vars.email:
> > > >         client=cache.ram('client:%s' % request.vars.email,
> > > > lambda:request.client, 300) ### retrieve client email
> > > >         if client and client!=request.client:  ### if no match, force
> > > > logout
> > > >              session.flash="sorry, somebody else is currently logged
> > > > in as you"
> > > >              redirect(URL(r=request))
> > > >     return dict(form=t2.login())
>
> > > > On Feb 13, 1:26 am, drayco <antrod...@gmail.com> wrote:
>
> > > > > Yes, I tested with two diferrent and two diferrent IP addresses.
>
> > > > > I use share hosting with apache and wsgi in webfaction.
>
> > > > > On 12 feb, 23:05, mdipierro <mdipie...@cs.depaul.edu> wrote:
>
> > > > > > Did you test logging from two different machines? Different IP
> > > > > > addresses?
>
> > > > > > Massimo
>
> > > > > > On Feb 12, 8:15 pm, drayco <antrod...@gmail.com> wrote:
>
> > > > > > > I tested it and the problem is the same.
>
> > > > > > > Do you have other suggestion?
>
> > > > > > > On 12 feb, 15:37, drayco <antrod...@gmail.com> wrote:
>
> > > > > > > > Thanks in advanced. I will try to fix that this afternoon.
>
> > > > > > > > On 12 feb, 14:33, mdipierro <mdipie...@cs.depaul.edu> wrote:
>
> > > > > > > > > Yes you can but this is not one line change. Assuming you 
> > > > > > > > > have a
> > > > > > > > > single server (not mutliple servers behind a NAT), the easy 
> > > > > > > > > way is to
> > > > > > > > > replace the register function in controllers/default.py with 
> > > > > > > > > the
> > > > > > > > > following code:
>
> > > > > > > > > if t2.logged_in: cache.ram('client:%s' % t2.person_id, lambda:
> > > > > > > > > request.client, 0)    ### store client ip in cache
>
> > > > > > > > > def register():
> > > > > > > > >     form=t2.register
> > > > > > > > > (verification=settings.email_verification,sender=settings.email_sender)
> > > > > > > > >     if t2.logged_in:
> > > > > > > > >         client=cache.ram('client:%s' % t2.person_id, lambda:
> > > > > > > > > request.client, 300) ### retrieve client ip
> > > > > > > > >         if client and client!=request.client:  ### if no 
> > > > > > > > > match, force
> > > > > > > > > logout
> > > > > > > > >              t2.messages.logged_out="sorry, somebody else is 
> > > > > > > > > currently
> > > > > > > > > logged in as you"
> > > > > > > > >              t2.logout(next='login')
> > > > > > > > >     return dict(form=form)
>
> > > > > > > > > On Feb 12, 2:00 pm, drayco <antrod...@gmail.com> wrote:
>
> > > > > > > > > > I have many users with diferrents kinds of rights and they 
> > > > > > > > > > gave their
> > > > > > > > > > passwords and user name to others people. The system allow 
> > > > > > > > > > to the
> > > > > > > > > > people enter to the application with the same user at the 
> > > > > > > > > > same time.
>
> > > > > > > > > > I now that because the people told me that they worked with 
> > > > > > > > > > the same
> > > > > > > > > > user, in the same time and in the same place but with 
> > > > > > > > > > diferrents
> > > > > > > > > > machines and in this moment i have a lot of problems with 
> > > > > > > > > > that.
>
> > > > > > > > > > And i don't want that this happend.
>
> > > > > > > > > > What can i do?
>
> > > > > > > > > > On Feb 12, 1:29 pm, mdipierro <mdipie...@cs.depaul.edu> 
> > > > > > > > > > wrote:
>
> > > > > > > > > > > I do not understand. Can you make an example?
>
> > > > > > > > > > > On Feb 12, 12:52 pm, drayco <antrod...@gmail.com> wrote:
>
> > > > > > > > > > > > is it possible that int3Version 0.4 (2009-01-07 
> > > > > > > > > > > > 09:01:19) and web2py
> > > > > > > > > > > > 1.55.2 diferent person with the same user can logg in?
>
> > > > > > > > > > > > And, if it is possible, how can i fix that?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to