[web2py] Re: Use of SSL in web2py fails in firefox (missing intermediary cert)

2011-08-18 Thread Markus Schmitz
After some more research yesterday night, I think I found the solution to my problem: As mentioned Verisign is using an intermediate certificate. You can find more information on the topic, if searching for chained certificates. The solution is not only to have your own private certificate in the

[web2py] Use of SSL in web2py fails in firefox (missing intermediary cert)

2011-08-17 Thread Markus Schmitz
Hi everybody, this might be an implicit rocket problem, but because the SSL parameters are passed on the command line of web2py, I thought to address this here: I am running a website based on web2py and installed SSL certificates today to enable https. The corresponding files are passed with

[web2py] Re: web2py hangs with multiple users due to sqllite

2011-03-02 Thread Markus Schmitz
not understand, and embarrassed, as I can reproduce my own problems. :-) Thanks Markus On Mar 1, 8:56 pm, Massimo Di Pierro massimo.dipie...@gmail.com wrote: Try add session._unlock(request) at the top of the controller. Does it still lock? On Mar 1, 12:55 am, Markus Schmitz mschm...@soft

[web2py] web2py hangs with multiple users due to sqllite

2011-02-28 Thread Markus Schmitz
Hi everybody, on my development system I use sqllite, because it allows me to conveniently backup my database, which contains a good amount of configuration data. In principle and as long as I access the web site alone, this works fine. But as soon as two users or I myself access the web site

[web2py] Re: How to do an array of table fields?

2011-01-25 Thread Markus Schmitz
24, 4:51 pm, DenesL denes1...@yahoo.ca wrote: Hi Markus, I would do: FF=[Field('y%s'%k) for k in range(1,101)] db.define_table('x',*FF) To access a field via an index just use: db.x['y%s'%index] Denes. On Jan 24, 8:38 am, Markus Schmitz mschm...@soft-impact.com wrote: Hi

[web2py] How to do an array of table fields?

2011-01-24 Thread Markus Schmitz
Hi everybody, I have the requirement to treat a range of table fields like an array. Example: I have a table x with fields y1, y2, , y100. In normal SQL I could create the table by issuing an 'alter table x add field y...' statement in a loop and I would be able to access the fields by

[web2py] Ajax pattern with Web2py

2010-12-27 Thread Markus Schmitz
Good afternoon everybody, I am trying my hand at a web2py based application and as long as I stay with the good old postback pattern, everything works brilliantly and coding is very efficient. In this style I programmed in the new application the account management, a database logging feature, a

[web2py] error in using captcha in crud

2010-12-17 Thread Markus Schmitz
Hi everybody, I was trying to use the recaptcha feature with a crud form and I am hitting an error: File D:\My Dropbox\InterManager\web2py\gluon\tools.py, line 2808, in update self._addrow(form, captcha.label, captcha, captcha.comment, AttributeError: 'Crud' object has no attribute

[web2py] Re: Logging of impersonation events

2010-12-10 Thread Markus Schmitz
:12 am, Markus Schmitz mschm...@soft-impact.com wrote: Hi everybody, I am working on a new site, where we also plan to use the impersonation feature for support purposes, which is very helpful. The impersonation works perfectly, but it looks like there is no log in the auth_event

[web2py] Logging of impersonation events

2010-12-07 Thread Markus Schmitz
Hi everybody, I am working on a new site, where we also plan to use the impersonation feature for support purposes, which is very helpful. The impersonation works perfectly, but it looks like there is no log in the auth_event table of this happening. Is this intended or did I look at the wrong

[web2py:32862] Re: Add button next to combo box

2009-10-14 Thread Markus Schmitz
Hi Renato, after this long and painfull journey could you post in a single comprehensive way, what you need to do to get the Add-Button working? I am sure, several of us need something quite similar. Maybe Massimo could even turn this into an howto on the FAQ? Regards Markus

[web2py:32539] Re: Circular table reference

2009-10-09 Thread Markus Schmitz
Hi Massimo, I think the answers are (all) spot on. I will go for the trick solution with the integer type instead of reference. It is closest to what I had in mind. Not naturally a clean DB design, but I can live with the missing cascade on delete in this application scenario. So I am fione.

[web2py:32476] Circular table reference

2009-10-08 Thread Markus Schmitz
Hi everybody, After evaluating quite a number of web frameworks, I ended up with web2py and frankly I am more than impressed. It rocks in many ways (could talk about it for some time really) and fits very close to my internal requirements. But I am a newbee and I am running into newbee