[web2py] Re: web2py app on startup trying to create a duplicate table auth_user

2021-04-17 Thread james c.
And the solution is to add fake_migrate=True into the DAL statement and the auth.define_tables statement. On Saturday, April 17, 2021 at 6:35:05 PM UTC-7 james c. wrote: > db = DAL(myconf.get('db.uri'), > auto_import = True, > ignore_field_case = True, > entity_quoting = False, > pool_size =

[web2py] web2py app on startup trying to create a duplicate table auth_user

2021-04-17 Thread james c.
db = DAL(myconf.get('db.uri'), auto_import = True, ignore_field_case = True, entity_quoting = False, pool_size = 10 migrate = True, migrate_enabled = True, check_reserved = ['common'], lazy_tables = False) . . . auth = Auth(db, host_names=myconf.get('host.names'))

[web2py] Re: anywhere.py rocket admin on port 80 no ssl

2021-04-17 Thread jonatha...@whatho.net
I do it by ssh'ing to the machine where I want to access the interface. In my case from my local (Linux) machine I do `ssh -L 80:127.0.0.1:80 u...@remote.machine.com`. This sets up a tunnel from the local m/c to the remote m/c. Then I access my local machine in the browser by 127.0.0.1:80 and