[web2py] Re: MySql encryption using DAL

2017-10-11 Thread appjarbiz
On Wednesday, October 11, 2017 at 11:52:02 AM UTC-5, Massimo Di Pierro wrote: > > > > On Saturday, 7 October 2017 01:55:53 UTC-5, appj...@gmail.com > wrote: >> >> Thank you Massimo! >> >> There is a great detailed deployment recipe for SSH tunneling to your >> database server from a Heroku

[web2py] Re: Issue with query with join and id in select field list

2017-10-11 Thread Anthony
The problem is here: > for field in person[table]: > person[table] is a Row object, and when the Row object includes the record ID, it also includes the special .update_record and .delete_record attributes. So, you'll either have to specify the fields explicitly, or check the

[web2py] Issue with query with join and id in select field list

2017-10-11 Thread Ricardo Oliveira
Hi, I've discovered what I believe to be a strange behaviour, but it might be my mistake. So, given two tables, for example: db.define_table('group_of_people', Field('name', 'string'), ) db.define_table('person', Field('name', 'string'), Field('age', 'integer'),

[web2py] Re: ticket as answer to admin window

2017-10-11 Thread Dave S
On Wednesday, October 11, 2017 at 10:51:38 AM UTC-7, 黄祥 wrote: > > might we know the error traceback? > perhaps some info about your env (os, python version, web2py version, > web2py package (source or not), how you start webp2y, etc) > about password, think that you can input whatever on it

[web2py] Re: reference representatnion

2017-10-11 Thread Anthony
See https://stackoverflow.com/a/11275155/440323. On Wednesday, October 11, 2017 at 12:49:18 PM UTC-4, Baiyo Paulo wrote: > > > db.define_table('store', > Field('name', 'string'), > auth.signature, > format='%(name)s', > ) > >

[web2py] Re: SQLForm not processing everytime values in form are changed

2017-10-11 Thread Anthony
> > # Days Form > if session.days: > days_form = > SQLFORM(db.days,record=session.days,submit_button='Save',showid=False, >_id='days_form') > else: > days_form = SQLFORM(db.days, submit_button = 'Save',_id='days_form') > if session.offer: >

[web2py] Re: ticket as answer to admin window

2017-10-11 Thread 黄祥
might we know the error traceback? perhaps some info about your env (os, python version, web2py version, web2py package (source or not), how you start webp2y, etc) about password, think that you can input whatever on it even the simplest like 'a' just 1 character, it accepted (but not

Re: [web2py] Re: Web2py won't start with getLogger error

2017-10-11 Thread Omi Chiba
Thank you for checking! It's working now after reinstalling python. On Wed, Oct 11, 2017 at 11:55 AM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > This is what I get: > > Python 2.7.13 |Anaconda 2.2.0 (x86_64)| (default, Dec 20 2016, 23:05:08) > > [GCC 4.2.1 Compatible Apple LLVM 6.0

[web2py] Re: Why web2py server hangs/freeze?

2017-10-11 Thread Massimo Di Pierro
we stopped recommending and supporting apache long ago. The world has moved to nginx and so have we. these problems are apache problems not web2py problems and that is why we stopped supporting it. On Friday, 15 September 2017 00:40:46 UTC-5, Narendra Kumar wrote: > > Hi, > > As suggested in

[web2py] Re: Web2py won't start with getLogger error

2017-10-11 Thread Massimo Di Pierro
This is what I get: Python 2.7.13 |Anaconda 2.2.0 (x86_64)| (default, Dec 20 2016, 23:05:08) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin Type "help", "copyright", "credits" or "license" for more information. Anaconda is brought to you by Continuum Analytics. Please check

[web2py] Re: MySql encryption using DAL

2017-10-11 Thread Massimo Di Pierro
On Saturday, 7 October 2017 01:55:53 UTC-5, appjar...@gmail.com wrote: > > Thank you Massimo! > > There is a great detailed deployment recipe for SSH tunneling to your > database server from a Heroku app instance (dyno). It works as of this > post.10/8/17 > >

[web2py] Did anybody got expiriences with WSL (Windows 10 and Ubuntu bash) ?

2017-10-11 Thread PatternStitcher911
Hey there I'm new here and got some real good experiences with web2py. I followed the step by step of pitch and tukker :-), help a lot. The only bad issue had been with CYGWIN, it's work, of course, but some times i have to switch in between Windows and CYGWIN, so that is not so comfortable and

[web2py] ticket as answer to admin window

2017-10-11 Thread Recai Alkan
i get a ticket Ticket issued: admin/127.0.0.1.2017-10-08.01-51-03.80d8d1d1-d68c-4e6a-a12e-f1ce6842aee4 when i go to admin page after starting web2py. Does web2py not like my

Re: [web2py] Re: Web2py mobile app using Kivy

2017-10-11 Thread Matan Ben Moshe
Hi All, Did someone try the suggested solutions here? Kordova or any other one? Is it working? -- 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

[web2py] migrating database and updating it

2017-10-11 Thread Yebach
Hello So based on all the material I have read about migration etc some of the updates are not working. I will explain what I am doing and please correct me where my steps are wrong I going from develop to production version and the key is to keep the database with its current data. 1.

Re: [web2py] Re: any ideas for printing stdout to the web interface?

2017-10-11 Thread António Ramos
did you saw this ? https://www.youtube.com/watch?v=MUWy-NSrvNQ 2017-10-10 18:17 GMT+01:00 LoveWeb2py : > well, imagine i'm doing > > for i in range(0,10): > print(i) > > There are hundreds of logging functions inside of the script, so it'd be a > bit much for here. > >

[web2py] SQLForm not processing everytime values in form are changed

2017-10-11 Thread Mujeeb Farees
I have an sqlform that is not working as expected. I think I have the wrong sequence or something and would like some help with it. *Controller* # Days Form if session.days: days_form = SQLFORM(db.days,record=session.days,submit_button='Save',showid=False,

[web2py] Re: any ideas for printing stdout to the web interface?

2017-10-11 Thread Dave S
On Tuesday, October 10, 2017 at 10:35:19 PM UTC-7, Dave S wrote: > > The standard logging in web2py will go to a file (using the name in the > as-shipped logging.conf unless you edit that), > Of course, that's not-quite-coherently simplified. The standard logging using the as-shipped