[web2py] Re: Mail.send failure

2015-06-14 Thread webpypy
trying another email account (hotmail , with only one dot) and switching between port numbers 25 , 465 will switch between two errors : error 10013 An attempt was made to access a socket in a way forbidden by its access permissions. and error 10060 A connection attempt failed because the

Re: [web2py] Re: avoid separate query within second nested loop

2015-06-14 Thread Niphlod
sorry what ? On Friday, June 12, 2015 at 11:35:49 PM UTC+2, Alex Glaros wrote: are there file size limitations when moving to dict that are not an issue if python loop? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] Re: blob type crop data

2015-06-14 Thread Niphlod
you're correct. web2py handles blob types and 'upload' Fields in its own way. You'd have to resort to either a full migration to another table or to access the data using raw sql statements. On Saturday, June 13, 2015 at 5:20:06 AM UTC+2, Viktor Boiarchuk wrote: Hello everybody! Nice to meet

[web2py] Re: Scheduler Question

2015-06-14 Thread Niphlod
seems that the function that goes into timeout leaves zombie processes behind. What are you doing in that function ? On Friday, June 12, 2015 at 11:56:09 PM UTC+2, Michael Gheith wrote: Hmmm. Looking in the database, I have 21 TIMEOUTS which corresponds to the 21 workers with all the same

[web2py] Re: Select multiple rows

2015-06-14 Thread Limedrop
Try something like this: rows = db(db.cikmis_soru.id.belongs(ids)).select() On Monday, 15 June 2015 07:13:02 UTC+12, xmarx wrote: Hi. I want to select a list of id from database. ids=[12,145,69] how can i do this? Is there any quick way of it? for example: query=

Re: [web2py] Re: avoid separate query within second nested loop

2015-06-14 Thread Alex Glaros
is there a size limitation to a dictionary? (want to know in general for future purposes) is there consequential extra overhead if using the dictionary method? thanks Alex -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source

[web2py] Select multiple rows

2015-06-14 Thread Selman Kocael
Hi. I want to select a list of id from database. ids=[12,145,69] how can i do this? Is there any quick way of it? for example: query= for i in ids: if not i==ids[-1]: query+=(db.cikmis_soru.id==+i+) else:

Re: [web2py] Re: avoid separate query within second nested loop

2015-06-14 Thread Niphlod
On Sunday, June 14, 2015 at 11:56:34 PM UTC+2, Alex Glaros wrote: is there a size limitation to a dictionary? (want to know in general for future purposes) generally, your OS free memory. is there consequential extra overhead if using the dictionary method? of course, its an

Re: [web2py] Invalid password reset

2015-06-14 Thread Annet
Could it be expired? I reported the same issue on 24. Mai https://groups.google.com/forum/?fromgroups=#!topic/web2py/ytYoSQuOux4 Kind regards, Anne -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

Re: [web2py] Re: Select multiple rows

2015-06-14 Thread Selman Kocael
Thanks. 14 Haz 2015 23:56 tarihinde Limedrop russ...@holtrd.com yazdı: Try something like this: rows = db(db.cikmis_soru.id.belongs(ids)).select() On Monday, 15 June 2015 07:13:02 UTC+12, xmarx wrote: Hi. I want to select a list of id from database. ids=[12,145,69] how can i do