[web2py] Re: mixing ldap Active Directory authentication and local authentication

2017-01-16 Thread Manuel Vio
round does the trick, but maybe a better approach would be using a custom field to store user's status. Cheers Manuel Vio Il giorno giovedì 12 gennaio 2017 15:23:28 UTC+1, Andrea Fae' ha scritto: > > Hello, > I want to use both local and domain AD authentication. > I did the job but

[web2py] Re: btw: great job

2017-04-23 Thread Manuel Vio
+1 Il giorno domenica 23 aprile 2017 05:35:29 UTC+2, lucas ha scritto: > > hey everyone, > > I think we should recognize and congratulate Massimo and the developers of > web2py. its been nearly a year since the last production update and the > whole platform is just excellent. > > it is the

[web2py] Re: web2py 2.15.0b1

2017-07-31 Thread Manuel Vio
Hi, I think I had the same problem, in my case it was a DAL constructor parameter changing its value in new web2py versions. Try to revert entity_quoting parameter to False as per this issue ticket I filed: https://github.com/web2py/web2py/issues/1697 See also here:

[web2py] Re: MS-SQL DAL Problem

2017-07-31 Thread Manuel Vio
Hi, recently I had an SQL issue upgrading web2py too. A DAL constructor default parameter (entity_quoting) changed his value and my application crashed. Maybe your case differs, but you can try reverting entity_quoting to False and see if this works. You can get more info here:

[web2py] Re: py4web and record versioning

2019-07-31 Thread Manuel Vio
Ok, I narrowed the problem a bit: In py4web/core.py, around line 207, there is this adjustment in order to make some variables threadsafe: # make sure some variables in pydal are thread safe for _ in ['readable', 'writable', 'default', 'update', 'requires']: setattr(pydal.DAL.Field, _,

[web2py] py4web and record versioning

2019-07-31 Thread Manuel Vio
Hi, I'm testing py4web and I'm stuck with record versioning. If in models.py I define a trivial table with versioning enabled like this: ### Define you table below # # db.define_table('thing', Field('name')) # ## always commit your models to avoid problems later # # db.commit() #