[web2py] Is it possible to load older web2py binaries for Mac?

2019-12-18 Thread Jarrod Wilcox
When I updated Mac OSX to Catalina and updated web2py version to 2.18.5 my application broke badly. As a temporary fix, is it possible to download older binaries such as 2.16? Jarrod Wilcox -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Re: auth.impersonate not working?!

2019-12-18 Thread António Ramos
found it Had to create a group called "impersonate" then added my user to that membership then in my function user=auth.login_bare("teslaoneday","youwish...") user=auth.impersonate(25) Not it works as expected... Regards Em qua., 18 de dez. de 2019 às 17:41, António Ramos escreveu: >

[web2py] auth.impersonate not working?!

2019-12-18 Thread António Ramos
hello i have a controller function that is called as a get/post request this functions then needs to log as a specific user before manipulating data from tables. 4 is my user id def checkLoad(): user=auth.impersonate(4) return "ok" When i call it with postman or something to test my