[web2py] Re: Apps created using web2py 2.14 version doesn't open in 2.18

2019-04-11 Thread Massimo Di Pierro
Hello Ron, Are you using the same python version? If so, please post the error and we will help you debug it. If we broke it, it is not intentonal. On Thursday, 11 April 2019 05:15:31 UTC-7, Ron Chatterjee wrote: > > Does anyone know how to mitigate the issue? > -- Resources: - http://web2py.c

[web2py] Re: Apps created using web2py 2.14 version doesn't open in 2.18

2019-04-11 Thread Anthony
Any details on what is happening? On Thursday, April 11, 2019 at 8:15:31 AM UTC-4, Ron Chatterjee wrote: > > Does anyone know how to mitigate the issue? > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.goo

[web2py] Re: apps

2013-07-28 Thread Massimo Di Pierro
The proper way is not to connect the database but use CAS and have one app delegate authentication to another. http://web2py.com/books/default/chapter/29/09/access-control?search=CAS#Central-Authentication-Service On Saturday, 27 July 2013 22:10:34 UTC-5, Oliver wrote: > > can i connect the sam

[web2py] Re: Apps that can share models

2010-04-29 Thread Iceberg
Option A2: Make the models a function placed inside of a module that lives on applications/my_lib_app/modules/my_stuff.py, then in each of your apps you write local_import('my_stuff', app='my_lib_app') It does not require extra installation on the production machines, you just need to install thre