[web2py] Re: File permission issues when running script as scheduler

2016-06-04 Thread lamest . email . ever
correct Niphlod, I was viewing through the appadmin and the colum names were shifted. It was not the timeout column that had a zero value. I increased the timeout (it was default value of something like 60 seconds) it is working now. Thanks again. On Friday, May 27, 2016 at 12:52:00 AM UTC-7,

[web2py] Re: Python Social Auth - example site working with downlevel version of PSA

2016-06-04 Thread Joe Barnhart
Hi Donald -- I find I need this too. The more recent version of social auth should handle Google authentication in addition to Facebook and Twitter. I need these three in addition to web2py logon for my application. Have you seen any progress on this front? We may have to collaborate and do

[web2py] Re: Fancytree lazyload

2016-06-04 Thread Alex Glaros
hi Henk or anyone, is it possible to post complete code for fancytree usage as the one above? I tried copying above but am missing some components. thanks Alex Glaros -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

Re: [web2py] Re: Ongoing issue with 'Lost connection to MySQL server during query'

2016-06-04 Thread Andre Kozaczka
Where do you put the - db._adapter.close() - db._adapter.reconnect In the Scheduler.py file? For some reason I'm still getting the lost connection error. I'm putting the close() and reconnect() in Scheduler.py and they surround the long processes. -- Resources: - http://web2py.com -

Re: [web2py] Re: web2py deployment: LetsEncrypt Nginx auto renew deployment script

2016-06-04 Thread Anthony
No idea, but I think browser coverage is very good, except for some very old systems. Anthony On Friday, June 3, 2016 at 5:47:13 PM UTC-4, Mark Graves wrote: > > Anthony, > > Any idea if the ISRG root CA is included in browsers yet? > > >

[web2py] Re: show map on grid view

2016-06-04 Thread Massimo Di Pierro
Please explain us better what you want to do. Form you code looks like you want one map (not one point) for each row in the grid. This is going to be awfully small. Anyway, Try change this: return DIV(_id = row.id), scr0, scr1 into return DIV(DIV(_id = row.id), scr0, scr1) On Tuesday, 31

[web2py] Re: bug web2py ticket json

2016-06-04 Thread Massimo Di Pierro
Can you please open a ticket and provide a minimal example of a controller to reproduce? On Monday, 30 May 2016 04:15:41 UTC-5, Alessio Varalta wrote: > > Hi, I notice a big problem with the ticket report when you use json. > > I have a controller where i take from the body the json with simple

[web2py] Re: cloudflare SSL on pythonAnywhere

2016-06-04 Thread Alex Glaros
never mind, I forgot to do this after renaming my servers to cloudFlare: ## if SSL/HTTPS is properly configured and you want all HTTP requests to ## be redirected to HTTPS, uncomment the line below: # request.requires_https() -- Resources: - http://web2py.com - http://web2py.com/book