[web2py] Re: Scheduler_Task Table Commit Issue (not Commiting) - Using queue_task and commit after

2018-02-22 Thread Dave S
On Thursday, February 22, 2018 at 4:51:30 PM UTC-8, Fabrizzio Abogadoc wrote: > > I've migrated to a new server (AWS), > ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180201 > (ami-a22323d8), > > Last migration was around four months ago, everithing were ok, all the >

[web2py] Scheduler_Task Table Commit Issue (not Commiting) - Using queue_task and commit after

2018-02-22 Thread Fabrizzio Abogadoc
I've migrated to a new server (AWS), ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180201 (ami-a22323d8), Last migration was around four months ago, everithing were ok, all the configuration server, web2py, and code it's do it by ansible playbooks, so there is "not possible some

Re: [web2py] Error using Postgres

2018-02-22 Thread Dave S
On Thursday, February 22, 2018 at 8:29:43 AM UTC-8, Morganti wrote: > > Hi, thanks your time. > > How can I check it? If I try to open web2py shell (web2py -S app -M), I > had no errors and all tables could be used. > > Thanks > BR > André > > That's one way to check. The actual files should

[web2py] Re: Form stopped working...

2018-02-22 Thread Dave S
On Thursday, February 22, 2018 at 2:54:21 AM UTC-8, Leonel Câmara wrote: > > Well since you already ruined that column. I would go with the lowercase > version of the field as I don't think it's a good practice to use uppercase > in field names. Then remember to check all your code for

[web2py] Re: Form stopped working...

2018-02-22 Thread Dave S
On Thursday, February 22, 2018 at 2:54:21 AM UTC-8, Leonel Câmara wrote: > > Well since you already ruined that column. I would go with the lowercase > version of the field as I don't think it's a good practice to use uppercase > in field names. Then remember to check all your code for

Re: [web2py] Error using Postgres

2018-02-22 Thread Morganti
Hi, thanks your time. How can I check it? If I try to open web2py shell (web2py -S app -M), I had no errors and all tables could be used. Thanks BR André Em quinta-feira, 22 de fevereiro de 2018 13:08:23 UTC-3, Ovidio Marinho escreveu: > > make sure the pg8000 and psycopg2 libraries are

Re: [web2py] Error using Postgres

2018-02-22 Thread Ovidio Marinho
make sure the pg8000 and psycopg2 libraries are installed at the start of web2py [image: http://itjp.net.br] http://itjp.net.b r *Ovidio Marinho Falcao Neto* ovidio...@gmail.com

[web2py] Error using Postgres

2018-02-22 Thread Morganti
Hello, I have a VPS using ubuntu 16.04, nginx, Postgres and web2py 2.16.1. I tried to execute one controller that populate some tables and got the error below. Then, I used that command to create a csv file with all tables and uploaded it in my desktop using SQLITE and no error were found.

[web2py] Re: Python3 and uwsgi

2018-02-22 Thread Ari Lion BR Sp
Hi, is there already a script for making web2py, python3 and uwsgi work together ? please create it at: web2py/scripts/* Em quarta-feira, 23 de agosto de 2017 12:53:49 UTC-3, Henri Chapelle escreveu: > > Hi, > I can't get web2py to work with uwsgi and python3. > Does anybody succeeded with a

[web2py] Re: controller with multiprocessing powers. Howto?

2018-02-22 Thread Pierre
i think the entry point to do multiprocessing in web2py is the web2py-scheduler. Howewer with this tool you can't share objects betweeen processes like you do using the multiprocessing python module so synchronization might be an issue. There are other tools like for instance* huey* but i am

[web2py] Re: Form stopped working...

2018-02-22 Thread Leonel Câmara
Well since you already ruined that column. I would go with the lowercase version of the field as I don't think it's a good practice to use uppercase in field names. Then remember to check all your code for db.table.Website references and change them to db.table.website it should work after