[web2py] Re: Scheduler is_ticker and deadlock issues

2017-01-30 Thread Niphlod
it really doesn't matter. the IPC is done on the database, so having local workers hitting it or remote ones doesn't turn into more transactions. On Friday, January 27, 2017 at 6:08:56 PM UTC+1, Jason Solack wrote: > > In your scenario do you have 10 workers on multiple machines? So having > 5

[web2py] Re: SystemExit: 1 ticket on scheduler

2017-01-30 Thread Niphlod
or it got a SIGTERM, or it was timing out. On Monday, January 30, 2017 at 10:16:49 PM UTC+1, Anthony wrote: > > Looks like maybe an error somewhere in your model files. Is that the > traceback from the associated record in the scheduler_run table? > > Anthony > > On Monday, January 30, 2017 at 8

[web2py] Re: Comparison doc for hosting a web2py app

2017-01-30 Thread Dave S
On Monday, January 30, 2017 at 4:07:56 PM UTC-8, Ron Chatterjee wrote: > > Is it fair to say then AWS wins over pythonanywhere hands down and we > should double down on AWS . Period? > > I have no idea. I think the answer may depend on what sort of project you are doing. /dps > > On Monday,

[web2py] Re: Comparison doc for hosting a web2py app

2017-01-30 Thread Ron Chatterjee
Is it fair to say then AWS wins over pythonanywhere hands down? On Monday, January 30, 2017 at 5:32:28 PM UTC-5, Dave S wrote: > > > > On Monday, January 30, 2017 at 1:44:48 PM UTC-8, Ron Chatterjee wrote: >> >> Is there any documentation of what's the most optimum hosting platform >> for web2py

[web2py] Re: Comparison doc for hosting a web2py app

2017-01-30 Thread Dave S
On Monday, January 30, 2017 at 1:44:48 PM UTC-8, Ron Chatterjee wrote: > > Is there any documentation of what's the most optimum hosting platform for > web2py as a function of scaling and speed? > > for example > > Heroku | pythonanywhere | AmazonEC2 | google App > > file size, number of use

[web2py] Re: Comparison doc for hosting a web2py app

2017-01-30 Thread Dave S
On Monday, January 30, 2017 at 1:44:48 PM UTC-8, Ron Chatterjee wrote: > > Is there any documentation of what's the most optimum hosting platform for > web2py as a function of scaling and speed? > > for example > > Heroku | pythonanywhere | AmazonEC2 | google App > > file size, number of u

[web2py] Comparison doc for hosting a web2py app

2017-01-30 Thread Ron Chatterjee
Is there any documentation of what's the most optimum hosting platform for web2py as a function of scaling and speed? for example Heroku | pythonanywhere | AmazonEC2 | google App file size, number of users, demand per second or page speed, storage traffic, price...More like to give a per

[web2py] Payment gateway working app using AuthorizNet

2017-01-30 Thread Ron Chatterjee
Is there a fully working version of payment gateway using AuthorizeNet that anyone can share? -- 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) --- You receive

[web2py] Re: SystemExit: 1 ticket on scheduler

2017-01-30 Thread Anthony
Looks like maybe an error somewhere in your model files. Is that the traceback from the associated record in the scheduler_run table? Anthony On Monday, January 30, 2017 at 8:02:29 AM UTC-5, Gael Princivalle wrote: > > Hello. > > I've got a scheduler function that run each 30 seconds for sending

Re: [web2py] Re: How to limit the size of uploads?

2017-01-30 Thread Yoel Benitez Fonseca
my bad. 2017-01-28 17:14 GMT-05:00 Leonel Câmara : > No Yoel, if he uses my second tip, which is change the webserver > configuration, the webserver will readily block the client after the limit > is reached and before the upload is finished. > > -- > Resources: > - http://web2py.com > - http://we

[web2py] SystemExit: 1 ticket on scheduler

2017-01-30 Thread Gael Princivalle
Hello. I've got a scheduler function that run each 30 seconds for sending web push notifications: def process_webn_alerts(): webn_alerts = db(db.alerts.instant_webn_status == 1).select() for webn_alert in webn_alerts: onesignal_players = db(db.onesignal_players.created_by == webn

[web2py] Re: Missing Preview in Built-in Wiki

2017-01-30 Thread Massimo Di Pierro
Is the problem specific of that template? Can you reproduce with default bootstrap template. On Saturday, 28 January 2017 16:52:31 UTC-6, briann...@gmail.com wrote: > > Hi Web2py Family, > > I hope you guys and gals can help me with this problem. > > I'm using the Volvox Bootstrap Template for my

Re: [web2py] Re: How do I add labels and text field dynamically in web2py and saved them into database.

2017-01-30 Thread Massimo Di Pierro
well. One can have two tables: db.define_table('meta',Field('tablename'),Field('fieldname')) def give_me_table(tablename): return db.define_table(tablename, *[Field(f.fieldname) for f in db(db.meta.tablename==tablename).select()]) db.meta.insert(tablename = 'product', fieldname='short_desc

Re: [web2py] Re: vue.js

2017-01-30 Thread St. Pirsch
Hello John, Would you mind sharing your solution? Thx, Stephan -- 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) --- You received this message because you are

Re: [web2py] Re: vue.js

2017-01-30 Thread 'John Philip' via web2py-users
Sorry Anthony for confusing you. I tried the scaffolding app but for some reason I never got the delimiter to be recognised. So I tried using the vuejs code from the introduction. However I managed to get it working now. thanks again. John On Sunday, January 29, 2017 at 11:55:54 PM UTC+1, Anth