[web2py] Docker

2017-02-01 Thread Michael M
Hello all, I put together a docker build: https://github.com/preactive/web2py-docker-centos7-nginx-uwsgi I tested it out on a CentOS7 Azure docker host image. Worked. Just FYI. ;-) -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] Re: Web2py Added to Vinta's Awesome-Python

2017-02-01 Thread Michael M
My change has been merged. https://github.com/vinta/awesome-python/blob/master/README.md#web-frameworks -- 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) ---

Re: [web2py] Re: error on application hosted on centos

2017-02-01 Thread Áureo Dias Neto
I use sqlite, how to test the connection string? And i dont know the corrects permissions to set, if you can say, please Em 2 de fev de 2017 01:30, "Dave S" escreveu: > On Wednesday, February 1, 2017 at 6:52:01 PM UTC-8, Áureo Dias Neto wrote: >> >> Hello, >> >> I

[web2py] Re: error on application hosted on centos

2017-02-01 Thread Dave S
On Wednesday, February 1, 2017 at 6:52:01 PM UTC-8, Áureo Dias Neto wrote: > > Hello, > > I deployed my w2p on Centos with nginx + uwsgi.. the defaults's app > (welcome/examples) work great, but i upload my app to server and get: > > Internal errorTicket issued: unknown >

[web2py] error on application hosted on centos

2017-02-01 Thread Áureo Dias Neto
Hello, I deployed my w2p on Centos with nginx + uwsgi.. the defaults's app (welcome/examples) work great, but i upload my app to server and get: Internal errorTicket issued: unknown why? -- Resources: - http://web2py.com -

[web2py] Re: How to use Let's Encrypt with Web2Py on Apache

2017-02-01 Thread Anthony
On Tuesday, January 31, 2017 at 9:31:24 AM UTC-5, Carlos Correia wrote: > > How did you do it? I'm facing the same problem... > You should probably handle this directly with the web server configuration rather than in web2py. I recommend Acmetool . Anthony --

[web2py] Re: japronto

2017-02-01 Thread Anthony
On Wednesday, February 1, 2017 at 4:54:31 AM UTC-5, Massimo Di Pierro wrote: > > I just discovered this: > > https://github.com/squeaky-pl/japronto > > I am impressed. I like the speed and the semantics. > Seems interesting, though the benchmarks seem a bit contrived. It does so well because it

Re: [web2py] Re: user_signature in url in email forces user to login but after redirects without signature

2017-02-01 Thread António Ramos
I was using only @auth.requires_signature() but when i started to send links via email to users, they could not access it because the controller was was trying to match my signature with the users signature. That is wy i changed to urls signed with the destination user id... Maybe this is not

[web2py] japronto

2017-02-01 Thread Massimo Di Pierro
I just discovered this: https://github.com/squeaky-pl/japronto I am impressed. I like the speed and the semantics. It would be nice to make our sessions, auth, template, and dal work with it. The main difficulty may be that dal relays on thread local Massimo -- Resources: -

[web2py] Re: Form field defaults the second time through

2017-02-01 Thread Dave S
On Thursday, January 26, 2017 at 2:13:42 AM UTC-8, Dave S wrote: > > On Thursday, January 19, 2017 at 10:02:04 PM UTC-8, Armando Hernandez > wrote: >> >> Assuming PostDate is a field of type datetime Try this before calling >> SQLFORM >> db.QuarterMaster.PostDate.default = request.now >> >> If