[web2py] Re: Form stopped working...

2018-02-21 Thread Joe
Thanks Leonel, what is the best way to fix this problem? I am on Pythonanywhere, I am not sure about what I should do at this point. On Wednesday, February 21, 2018 at 11:31:46 PM UTC+8, Leonel Câmara wrote: > > From the point of view of web2py if you had migrations enabled what > happened was t

[web2py] accessing Exchange IMAP email

2018-02-21 Thread Andrea Fae'
I have an exchange server and usually I access to email using "domain\username" and password... using # Replace user, password, server and port in the connection string # Set port as 993 for SSL supportimapdb = DAL("imap://user:password@server:port", pool_size=1) what can I type in the user ?

[web2py] Re: Form stopped working...

2018-02-21 Thread Leonel Câmara
>From the point of view of web2py if you had migrations enabled was that you deleted the "Website" column in the table and then added a "website" column. When you changed it back, what you did was delete the column "website" and make a new one "Website". The Form is probably working but, if

Re: [web2py] Form stopped working...

2018-02-21 Thread António Ramos
Check the sql.log in databases folder also open your database and check the column name 2018-02-21 3:18 GMT+00:00 Joe : > My form was working fine for a long time. Then, I made a small change in > the db.py table, like this: > > Field('Website', requires=[IS_NOT_EMPTY(), IS_URL()]), > > to th

[web2py] controller with multiprocessing powers. Howto?

2018-02-21 Thread António Ramos
Hello i need to create multiple processes to query a lot of databases how do i use properly multiprocessing with web2py ? from a simple example that works from my windows shell python example.py from multiprocessing import Pool def f(x): return x*x if __name__ == '__main__': p = Pool(5

[web2py] Re: INNER JOIN and WHERE clause in web2py

2018-02-21 Thread 'Annet' via web2py-users
Hi Anthony, Thanks for helping me solve this problem, I very much appreciate your help. Annet -- 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 receiv