Ok, I appear to have it working:

Here's what I did.  I need someone much smarter than me to determine 
whether or not this is wise:

Original web2py/gluon/globals.py at line 1230
        dd = dict(locked=False,
                  client_ip=response.session_client,
                  modified_datetime=request.now,
                  session_data=session_pickled,
                  unique_key=unique_key)

I changed it to:
        dd = dict(locked='False',
                  client_ip=response.session_client,
                  modified_datetime=str(request.now),
                  session_data=session_pickled,
                  unique_key=unique_key)

Now it is working for me.

-Jim



On Thursday, December 6, 2018 at 4:04:01 PM UTC-6, Jim S wrote:
>
> Yes, same result.
>
> I clear history/cookies and still got the message
>
> I tried a private window and it happened.
>
> Also got the same result testing from a different browser.
>
> -Jim
>
> On Thursday, December 6, 2018 at 3:37:10 PM UTC-6, Leonel Câmara wrote:
>>
>> Does this still happen if you clear the cookies in the browser (or use a 
>> private window) before visiting the URL?
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to