[web2py] Apache + multidomain + SSL

2018-01-03 Thread Kenneth
Hello, does anybody have experience with setting up Apache with separate certificate for multi domains. I have it working like 95% but something is strange, I can't for example look at errors with this setup. Kenneth -- Resources: - http://web2py.com - http://web2py.com/book

[web2py] How to select row based on item ID or name

2018-01-03 Thread Maurice Waka
I have the following code for my DB: dbmyhealth.define_table("health", Field('name', 'string'), Field('definition', 'text', length= 100,), Field('abnval', 'text', length= 100,),

[web2py] A web2py image slide show

2018-01-03 Thread mostwanted
Hi guys, complements of the new season to you all. Can anyone tell where i can find a simple web2py image slide show that's manually navigated with buttons? Thanks. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Date widget seems boroken on 2.16.1

2018-01-03 Thread Carlos Cesar Caballero Díaz
Hi guys, is just me, or the date widget seems broken on 2.16.1 (see attached image)? Greetings. -- 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

Re: [web2py] url structure

2018-01-03 Thread Richard Vézina
You have to move in the root of web2py the file and rename it... Richard On Wed, Jan 3, 2018 at 11:12 AM, Richard Vézina wrote: > Look in web2py/examples/ parametric router file and set as default you > desired app : > > routers = dict( > > # base router >

Re: [web2py] url structure

2018-01-03 Thread Richard Vézina
Look in web2py/examples/ parametric router file and set as default you desired app : routers = dict( # base router BASE=dict( default_application='welcome', ), ) Replace welcome by you app... Web2py should then load your app as default and you can access it without the

[web2py] url structure

2018-01-03 Thread jcrowe
Currently, my URLs look like: http://www.domain.com/application/default/ Can anyone point me to instructions on how I can drop the /application/ and only include the domain and controller? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

Re: [web2py] Fetch data from database

2018-01-03 Thread Massimiliano
You can do something like: db.executesql(‘select * from ’, as_dict=True ) On Wed, Jan 3, 2018 at 7:09 AM, Narendra Kumar < narendrakumar.varan...@gmail.com> wrote: > Hi, > Is it possible to select/fetch data from database using > db().select(db.tablename.ALL). > > while table exists in database