Re: [web2py] Website automatically gets logged out

2019-09-05 Thread Saranya S
Thanks SandeepI'm using the same web2py app from github. You have given the link in another thread as well. It's working perfectly when tested in local host(127.0.0.1:8000). I have deployed the same app to pythonanywhere server. Below is the link: https://saranya80a.pythonanywhere.com/payum

[web2py] Re: How can I update the record in one table with value entry of another table as soon as the value is entered?

2019-09-05 Thread isi_jca
Hi!!!, When you made a sale, only must to update the products sold. For example: db(db.product.amount.id = product_id ).update(amount=amount1) El jueves, 5 de septiembre de 2019, 15:04:57 (UTC-3), mostwanted escribió: > > Everything you are saying i understand but I cant put into code

Re: [web2py] web3py -> py4web

2019-09-05 Thread Juan M. Chapa Z.
Great! El jul 24, 2019 12:40 a.m., "Massimo Di Pierro" escribió: > OK. I know. I am not good with names. > But there are lots of requirements to be fulfilled. > py4web.com was available and the pypi package was available. > Here is running on google cloud: > http://py4web.com/ > > Ducking... > >

[web2py] Gostaria de saber se o web2py ou até mesmo o proprio python trabalha com steb by step guide

2019-09-05 Thread Kimus
Como disse no titulo to procurando algo que seja parecido com isso https://introjs.com/ só que não to utilizando o JS pq não to conseguindo colocar o bootstrap pra deixar mais bonitinho dai gostaria de saber se a framework tem algo do genero que possa me ajuda desde ja agradeço -- Resourc

[web2py] Re: How can I update the record in one table with value entry of another table as soon as the value is entered?

2019-09-05 Thread mostwanted
Everything you are saying i understand but I cant put into code, every attempt I have made at this all day today just up on traceback-flames! I am recording sales made into the sales db through the buy function: def buy(): if not session.cart: session.flash = 'Add something to shoppin

[web2py] Re: Interaction between two selects

2019-09-05 Thread Константин Комков
Thank you! I realised it using array, which I transferred in JS, like that: subcategoryArr = '[' for row in rows: subcategoryArr += '[' + str(row.id) + ',' + str(row.ID_CATEGORY) + '],' subcategoryArr = subcategoryArr[0:-1]+']' where row.id is ID of my subcategory. And JS: $(functi

Re: [web2py] Re: any travis expert can help debug failures?

2019-09-05 Thread Richard Vézina
Sorry, I would help more, but I have not much time... I am not using web2py full time anymore... I am happy to see you pursue with py4web... I am eager to find time to try it... Seems really fast! :) Richard On Mon, Aug 19, 2019 at 3:57 PM Massimo Di Pierro < massimo.dipie...@gmail.com> wrote:

[web2py] Re: Interaction between two selects

2019-09-05 Thread villas
Maybe one of these will help: https://www.jqueryscript.net/tags.php?/Cascading%20Dropdown/ https://github.com/scubism/sqlabs/blob/master/modules/plugin_lazy_options_widget.py http://www.web2pyslices.com/slice/show/1724/cascading-dropdowns-simplified http://www.web2pyslices.com/slice/show/1503/vvms

Re: [web2py] Website automatically gets logged out

2019-09-05 Thread sandeep patel
Hey Saranya, I have successfully depoyed PayUMoney payment gateway in web2py apps. Here is code repo for that. Please have a look at it. Thanks SP On Thu, Sep 5, 2019 at 4:58 PM Saranya S wrote: > Website automatically logs out after 'PayUMoney

[web2py] Website automatically gets logged out

2019-09-05 Thread Saranya S
Website automatically logs out after 'PayUMoney' payment gateway, redirects to success.html page. This happens only after deploying to pythonanywhere serverSame code works perfectly in local host(http://127.0.0.1:8000) https://saranya80a.pythonanywhere.com/Yugamugi1/default/index Go to t