[web2py] Network Protocol Violation Error on my web2py apps

2020-11-16 Thread mostwanted
Guys lately my applications have been experiencing this error when opening: *The site at https://www.this_site.com/init/default/business_registration has experienced a network protocol violation that cannot be repaired. * This error shows in pages where users have to login, also forms do not

Re: [web2py] DId.app auth is good for web2py apps ?

2020-03-21 Thread Massimo Di Pierro
Did you get this to work. This is very valuable. I can help fix it during the week-end. Not going anywhere. ;-) On Friday, 13 March 2020 06:00:40 UTC-7, Kevin Keller wrote: > > You need to change your okta tenant URLs and the client Id and Secret. > > I still points to my tenant :) > > > > >

Re: [web2py] DId.app auth is good for web2py apps ?

2020-03-13 Thread Kevin Keller
You need to change your okta tenant URLs and the client Id and Secret. I still points to my tenant :) On Thu, Mar 12, 2020 at 3:05 PM Kevin Keller wrote: > This goes into your db.py and you also need to install okta_jwt via pip. > > I still haven figured it out how to terminate the session

Re: [web2py] DId.app auth is good for web2py apps ?

2020-03-12 Thread Kevin Keller
This goes into your db.py and you also need to install okta_jwt via pip. I still haven figured it out how to terminate the session in Okta and Web2py at the same time The redirect in the logout terminates the okta session but not the web2py one. For that you need session.forget and session.renew

Re: [web2py] DId.app auth is good for web2py apps ?

2020-03-12 Thread Kevin Keller
Okta_CLIENT_ID='0x' Okta_CLIENT_SECRET="x" ## import required modules try: import json except ImportError: from gluon.contrib import simplejson as json from gluon.contrib.login_methods.oauth20_account import OAuthAccount ## extend the OAUthAccount class class OktaAccount(OAuthAccount): #

Re: [web2py] DId.app auth is good for web2py apps ?

2020-03-11 Thread António Ramos
Thank you Kevin , please share... Em qua., 11 de mar. de 2020 às 14:53, Kevin Keller escreveu: > Looks nice enough, though it is missing an easy way to configure scopes > and claims. > > It dont see it anywhere in their free account actually. > > I would probably rather advice to go with Auth0

Re: [web2py] DId.app auth is good for web2py apps ?

2020-03-11 Thread Kevin Keller
Looks nice enough, though it is missing an easy way to configure scopes and claims. It dont see it anywhere in their free account actually. I would probably rather advice to go with Auth0 or Okta. I work for Okta so that is why I have integrated web2py with Okta in a sample app. I can send you t

[web2py] DId.app auth is good for web2py apps ?

2020-03-11 Thread António Ramos
DID is an Identity Provider, that authenticates users by verifying access to either an email address or securely stored private key. This gives users the ability to sign in with a single click without being tracked by the social login providers. It gives developers the ability

[web2py] Apps created using web2py 2.14 version doesn't open in 2.18

2019-04-11 Thread Ron Chatterjee
Does anyone know how to mitigate the issue? -- 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 received this message because you are subscribed to the Go

Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Dave S
On Wednesday, January 16, 2019 at 4:21:10 PM UTC-8, 黄祥 wrote: > > agree, learn from several web2py app on github some of them didn't include > the private folders > btw github now offering private repo for free, so if you want to keep it > on just set it in the private repo > > best regards > s

Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Eliezer (Vlad) Tseytkin
Thank you! On Wed, Jan 16, 2019, 6:46 PM Dave S > > On Wednesday, January 16, 2019 at 3:10:22 PM UTC-8, Vlad wrote: >> >> Dave, >> you mentioned "Sanitize private/appconfig.ini" - could you please comment >> on it - >> I am not sure how this file is used by web2py, but seems that it may have >> s

Re: [web2py] Re: web2py apps & github

2019-01-16 Thread 黄祥
agree, learn from several web2py app on github some of them didn't include the private folders btw github now offering private repo for free, so if you want to keep it on just set it in the private repo best regards stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentati

Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Dave S
On Wednesday, January 16, 2019 at 3:10:22 PM UTC-8, Vlad wrote: > > Dave, > you mentioned "Sanitize private/appconfig.ini" - could you please comment > on it - > I am not sure how this file is used by web2py, but seems that it may have > some private info (though has some generics for me now)

Re: [web2py] Re: web2py apps & github

2019-01-16 Thread Vlad
Dave, you mentioned "Sanitize private/appconfig.ini" - could you please comment on it - I am not sure how this file is used by web2py, but seems that it may have some private info (though has some generics for me now). Should I just exclude it from git? Is it getting recreated by w2p or... Wh

Re: [web2py] Re: web2py apps & github

2019-01-15 Thread Dave S
On Sunday, January 13, 2019 at 6:33:14 AM UTC-8, Vlad wrote: > > Got it, > thank you very much. > Learning git now - it's so messy and unstructured as far as learning curve > :) I guess once I get it, it becomes quick and easy... > > In my opinion, git is ugly, but then I went from rcs to scr

Re: [web2py] Re: web2py apps & github

2019-01-13 Thread Vlad
Got it, thank you very much. Learning git now - it's so messy and unstructured as far as learning curve :) I guess once I get it, it becomes quick and easy... On Monday, January 7, 2019 at 7:21:55 PM UTC-5, Dave S wrote: > > > > On Sunday, January 6, 2019 at 12:45:27 PM UTC-8, Vlad wrote: >> >>

Re: [web2py] Re: web2py apps & github

2019-01-07 Thread Dave S
On Sunday, January 6, 2019 at 12:45:27 PM UTC-8, Vlad wrote: > > Oh, I didn't express myself precisely: I am asking about Github - I am > setting up a Github repository and wondering what exactly from the app > directory should go in there - without extra files and without missing > files - t

Re: [web2py] Re: web2py apps & github

2019-01-06 Thread Eliezer (Vlad) Tseytkin
Got it, Thank you On Sun, Jan 6, 2019, 4:48 PM 黄祥 it depends on what you want to have version record of your files (better > to put it all web2py apps on github) > $ tree web2py/applications/web2pyapp > web2py/applications/web2pyapp > |-- ABOUT [if any] > |-- LICENSE [if any] &g

Re: [web2py] Re: web2py apps & github

2019-01-06 Thread 黄祥
it depends on what you want to have version record of your files (better to put it all web2py apps on github) $ tree web2py/applications/web2pyapp web2py/applications/web2pyapp |-- ABOUT [if any] |-- LICENSE [if any] |-- __init__.py |-- controllers |-- cron [if any] |-- languages |-- models

Re: [web2py] Re: web2py apps & github

2019-01-06 Thread Eliezer (Vlad) Tseytkin
Oh, I didn't express myself precisely: I am asking about Github - I am setting up a Github repository and wondering what exactly from the app directory should go in there - without extra files and without missing files - to preserve complete app/set On Sun, Jan 6, 2019 at 2:51 PM 黄祥 wrote: > fo

[web2py] Re: web2py apps & github

2019-01-06 Thread 黄祥
for pack or unpack thing it's use tar ref: https://groups.google.com/d/msg/web2py/khiGuJYxHpo/clEEU7n3VGEJ best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/lis

[web2py] web2py apps & github

2019-01-06 Thread Vlad
I used to pack and unpack the app between my local computer and pythonanywhere - was going back and forth daily. worked like a charm. now got t github. Should I place the whole application/ folder in its entirety or I should skip some files? I am not sure how pack / unpack does it, i.e. if it p

[web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-07-07 Thread Dave S
On Thursday, July 6, 2017 at 2:48:47 PM UTC-7, Pbop wrote: > > Making an app ready for GDPR compliance does not have some checklist and > is an ongoing commitment to privacy and security by design. Web2Py aligns > well with GDPR in many ways out of the box. Here is a fairly comprehensive > to

[web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-07-06 Thread Pbop
Making an app ready for GDPR compliance does not have some checklist and is an ongoing commitment to privacy and security by design. Web2Py aligns well with GDPR in many ways out of the box. Here is a fairly comprehensive toolkit to assist in all of the moving pieces for GDPR compliance from a

[web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-07-06 Thread Pierre
for cryptographists and "bunker" amateurs : http://bitwiseshiftleft.github.io/sjcl/ -- 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 received this mes

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-07-05 Thread António Ramos
just found the solution for pseudonimization of personal data as suggested by GDPR http://www.web2pyslices.com/slice/show/2012/encrypt-information-into-the-database Web2py is GDPR ready! Regards António 2017-07-04 22:26 GMT+01:00 António Ramos : > Something about cookies and GDPR. > > http

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-07-04 Thread António Ramos
Something about cookies and GDPR. https://www.cookielaw.org/blog/2016/5/13/the-gdpr,-cookie-consent-and-customer-centric-privacy/ 2017-06-03 0:06 GMT+01:00 Carlos Kitu : > Hi Antonio, > I don't know the UK regulations about GDPR, but I know the spanish ones, > and in this subject both countries

[web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-02 Thread Carlos Kitu
Hi Antonio, I don't know the UK regulations about GDPR, but I know the spanish ones, and in this subject both countries apply the european regulation, thus i think that they must be quite similar. The spanish data protection regulations defines three levels of security personal data, related to

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-02 Thread Dave S
On Friday, June 2, 2017 at 6:48:18 AM UTC-7, Ramos wrote: > > Dont know where to start but meanwhile i share this post > > > http://www.computerweekly.com/news/450419960/Top-UK-firms-websites-violate-key-GDPR-principle?utm_medium=EM&asrc=EM_EDA_77932701&utm_campaign=20170601_Top%20UK%20firms%E2%8

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-02 Thread Dave S
On Friday, June 2, 2017 at 4:01:53 AM UTC-7, Ramos wrote: > > i think it will affect all of us and our apps... > [image: Imagem inline 1] > Those all seem like something that could be handled by boilerplate links or check boxes in the footer of your pages: "Click here to contact us about proble

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-02 Thread António Ramos
Dont know where to start but meanwhile i share this post http://www.computerweekly.com/news/450419960/Top-UK-firms-websites-violate-key-GDPR-principle?utm_medium=EM&asrc=EM_EDA_77932701&utm_campaign=20170601_Top%20UK%20firms%E2%80%99%20websites%20violate%20key%20GDPR%20principle&utm_source=EDA 20

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-02 Thread Anthony
On Friday, June 2, 2017 at 7:01:53 AM UTC-4, Ramos wrote: > > i think it will affect all of us and our apps... > Right, but it's still not clear what functionality should be added to web2py specifically. Most of those issues probably have to be handled at the application level or the server leve

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-02 Thread António Ramos
i think it will affect all of us and our apps... [image: Imagem inline 1] And more... Any company that does not adapt their apps to comply will incur in a heavy fine... https://www.itgovernance.co.uk/dpa-penalties http://ec.europa.eu/justice/data-protection/reform/files/ regulation_oj_en.pdf htt

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-01 Thread Anthony
On Thursday, June 1, 2017 at 1:06:20 PM UTC-4, Ramos wrote: > > One of the requisites is encryption on all user specific data > Do you have a link to any detailed specifications? Is encrypting the server storage adequate? I suspect these are not necessarily going to be in scope for a web framewo

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-01 Thread Dave S
On Thursday, June 1, 2017 at 10:06:20 AM UTC-7, Ramos wrote: > > One of the requisites is encryption on all user specific data > Isn't that better handled by the database engine? /dps > > 2017-06-01 18:01 GMT+01:00 Anthony >: > >> What specific functionality do you think web2py could offer a

Re: [web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-01 Thread António Ramos
One of the requisites is encryption on all user specific data 2017-06-01 18:01 GMT+01:00 Anthony : > What specific functionality do you think web2py could offer at the > framework level? > > > On Thursday, June 1, 2017 at 6:40:15 AM UTC-4, Ramos wrote: >> >> I have 3 apps where i need to address

[web2py] Re: Any ideas on how to prepare web2py apps for GDPR

2017-06-01 Thread Anthony
What specific functionality do you think web2py could offer at the framework level? On Thursday, June 1, 2017 at 6:40:15 AM UTC-4, Ramos wrote: > > I have 3 apps where i need to address this issue... > > > > http://www.computerweekly.com/news/450419960/Top-UK-firms-websites-violate-key-GDPR-princ

[web2py] Any ideas on how to prepare web2py apps for GDPR

2017-06-01 Thread António Ramos
I have 3 apps where i need to address this issue... http://www.computerweekly.com/news/450419960/Top-UK-firms-websites-violate-key-GDPR-principle?utm_medium=EM&asrc=EM_EDA_77932701&utm_campaign=20170601_Top%20UK%20firms%E2%80%99%20websites%20violate%20key%20GDPR%20principle&utm_source=EDA Regard

[web2py] Re: What's the proper way of sharing sessions between two web2py apps served through different domains?

2016-05-31 Thread Anthony
thentication-Service> >> instead? >> >> Anthony >> >> On Tuesday, May 31, 2016 at 8:46:45 AM UTC-4, Lisandro wrote: >>> >>> I have *two web2py apps that share the same db, and they also share the >>> session*. >>> Both *apps are

[web2py] Re: What's the proper way of sharing sessions between two web2py apps served through different domains?

2016-05-31 Thread Lisandro
b2py.com/books/default/chapter/29/09/access-control#Central-Authentication-Service> > instead? > > Anthony > > On Tuesday, May 31, 2016 at 8:46:45 AM UTC-4, Lisandro wrote: >> >> I have *two web2py apps that share the same db, and they also share the >> se

[web2py] Re: What's the proper way of sharing sessions between two web2py apps served through different domains?

2016-05-31 Thread Anthony
UTC-4, Lisandro wrote: > > I have *two web2py apps that share the same db, and they also share the > session*. > Both *apps are served through different domains* (using routes.py). > That means that *the user logs in one domain* (through one of the apps), *and > then can navig

[web2py] Re: What's the proper way of sharing sessions between two web2py apps served through different domains?

2016-05-31 Thread Niphlod
t; Regards, > Lisandro. > > > El martes, 31 de mayo de 2016, 10:12:24 (UTC-3), Niphlod escribió: >> >> afaik cookies can't be sent to multiple domains. CORS is needed. IMHO >> it's correct that web2py doesn't provide a way to support that. >> &g

[web2py] Re: What's the proper way of sharing sessions between two web2py apps served through different domains?

2016-05-31 Thread Lisandro
t that web2py doesn't provide a way to support that. > > On Tuesday, May 31, 2016 at 2:46:45 PM UTC+2, Lisandro wrote: >> >> I have *two web2py apps that share the same db, and they also share the >> session*. >> Both *apps are served through different domains

[web2py] Re: What's the proper way of sharing sessions between two web2py apps served through different domains?

2016-05-31 Thread Niphlod
afaik cookies can't be sent to multiple domains. CORS is needed. IMHO it's correct that web2py doesn't provide a way to support that. On Tuesday, May 31, 2016 at 2:46:45 PM UTC+2, Lisandro wrote: > > I have *two web2py apps that share the same db, and they also share th

[web2py] What's the proper way of sharing sessions between two web2py apps served through different domains?

2016-05-31 Thread Lisandro
I have *two web2py apps that share the same db, and they also share the session*. Both *apps are served through different domains* (using routes.py). That means that *the user logs in one domain* (through one of the apps), *and then can navigate through both domains* (that is, both apps) being

[web2py] turning web2py apps into mobile apps

2016-05-26 Thread Massimo Di Pierro
Anybody used this? https://gonative.io/ seems like a great way to create mobile apps from web2py apps. trying it now.. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list

[web2py] Flicker when switching between pages on Web2py apps

2016-05-14 Thread Daniel Libonati
Hi, noob question here... I'm trying to create an admin interface with Web2py, with a navbar on top and / or a sidebar. I'm seeing that even without adding too much logic to the app, screen needs to go blank every time a link is clicked for then reloading all components back again. I've been i

[web2py] Re: Are web2py apps safe from xss attacks?

2016-05-13 Thread Leonel Câmara
I don't really see how you could have that vulnerability in web2py without explicitly programming for it. But no it does not protect you from yourself. How could we protect you from being a dumbass and using invalidated user input to get some file directly from the filesystem? Note, that th

[web2py] Re: Are web2py apps safe from xss attacks?

2016-05-13 Thread Steve Joe
Saw it. Have a last doubt. Does web2py avoid file inclusion vulnerability? How? On Friday, May 13, 2016 at 8:31:49 PM UTC+5:30, Anthony wrote: > > Have a look here: > http://web2py.com/books/default/chapter/29/01/introduction#Security > > On Friday, May 13, 2016 at 10:20:29 AM UTC-4, Steve Joe w

[web2py] Re: Are web2py apps safe from xss attacks?

2016-05-13 Thread Anthony
Have a look here: http://web2py.com/books/default/chapter/29/01/introduction#Security On Friday, May 13, 2016 at 10:20:29 AM UTC-4, Steve Joe wrote: > > That's fine. How about SQL injection? Is it safe from it? > > On Friday, May 13, 2016 at 2:17:59 AM UTC+5:30, Anthony wrote: >> >> As long as yo

[web2py] Re: Are web2py apps safe from xss attacks?

2016-05-13 Thread Leonel Câmara
Yes it is, as long as you use the DAL to insert stuff in the database. -- 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 received this message because y

[web2py] Re: Are web2py apps safe from xss attacks?

2016-05-13 Thread Steve Joe
That's fine. How about SQL injection? Is it safe from it? On Friday, May 13, 2016 at 2:17:59 AM UTC+5:30, Anthony wrote: > > As long as you're allowed to write your own code, nothing is safe, but one > thing web2py does to help protect against XSS attacks is to automatically > escape all content

[web2py] Re: Are web2py apps safe from xss attacks?

2016-05-12 Thread Anthony
As long as you're allowed to write your own code, nothing is safe, but one thing web2py does to help protect against XSS attacks is to automatically escape all content inserted in views. Anthony On Thursday, May 12, 2016 at 4:14:00 PM UTC-4, Steve Joe wrote: > > how? -- Resources: - http://we

[web2py] Are web2py apps safe from xss attacks?

2016-05-12 Thread Steve Joe
how? -- 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 received this message because you are subscribed to the Google Groups "web2py-users" group. To u

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-04-13 Thread Mirek Zvolský
I have web2py at forpsi. I use virtual machine Debian there (about 1.20 EUR / month). I have installed nginx (apt install nginx) and then web2py using scripts/ setup-web2py-nginx-uwsgi-ubuntu.sh But seems for systemd some files are missing. You can read more in ubuntu web2py

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-04-12 Thread Stephen Duisberg
On Monday, March 14, 2016 at 5:58:13 PM UTC+5:30, Mirek Zvolský wrote: > > allwaysdata.com, but has only 10M place (about 6M after you install > web2py-min), good ssh, cron, no problem to install everything. > forpsi.com paid, but only 2$/month for full VM > > but forpsi isnt for web2py,right? >

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-04-12 Thread Stephen Duisberg
On Monday, March 14, 2016 at 5:58:13 PM UTC+5:30, Mirek Zvolský wrote: > > allwaysdata.com, but has only 10M place (about 6M after you install > web2py-min), good ssh, cron, no problem to install everything. > forpsi.com paid, but only 2$/month for full VM > > > > Which one's the best to go for?

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-04-12 Thread Stephen Duisberg
but forpsi isn't for web2py , right? On Monday, March 14, 2016 at 5:58:13 PM UTC+5:30, Mirek Zvolský wrote: > > allwaysdata.com, but has only 10M place (about 6M after you install > web2py-min), good ssh, cron, no problem to install everything. > forpsi.com paid, but only 2$/month for full VM > >

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-27 Thread Eamonn
Just to follow up on Mirek;s post, the url is https://www.alwaysdata.com simple typo, seems like a good hosting solution. On Sunday, 21 February 2016 06:38:46 UTC, Rgb Aston wrote: > > Which one's the best to go for? > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation)

Re: [web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-26 Thread Carlos Cesar Caballero Díaz
Hi Michael, I really appreciate your feedback, GAE in fact supports PHP, but is from Google, an USA company that (of course) follows US laws, unfortunately because of that laws the service can't be used from Cuba (I am from Cuba) and other few countries (even the sites hosted in GAE cannot be a

Re: [web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-25 Thread Philip Kilner
Hi Michael, On 24/03/16 21:23, Michael Beller wrote: For low volume apps, GAE is also great - I run several apps (really just simple sites) on GAE for free (but I don't think that supports PHP either). Happily, GAE does now support PHP: - https://cloud.google.com/appengine/docs/php/

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-24 Thread Michael Beller
I don't know about PHP but if you need a separate install of web2py for each app (which is what I do), each new web app costs $2/month. In several cases, I run multiple apps within one instance of web2py (the only disadvantage is the URL but that's oftentimes fine for some enterprise apps). I

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-24 Thread Carlos Cesar Caballero
Hi Michael, thanks for your suggestion, pythonanywhere is really good, but it do not meet two requirements that I need, the first is that I have some php apps, and the second is that I have many low traffic sites, making the pythonanywhere plan too expensive. Greetings. El miércoles, 23 de mar

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-23 Thread Michael Beller
+1 for pythonanywhere.com based in UK if that meets your non-USA requirement awesome support completely scalable runs on AWS infrastructure (they've essentially built a layer on top of AWS that's make it trivial to manage) On Tuesday, March 22, 2016 at 8:47:12 AM UTC-4, Carlos Cesar Caballero

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-22 Thread Carlos Cesar Caballero
Hi, have you some experience with forpsi.com? I am looking for reliable non USA providers. Greetings. El lunes, 14 de marzo de 2016, 8:28:13 (UTC-4), Mirek Zvolský escribió: > > allwaysdata.com, but has only 10M place (about 6M after you install > web2py-min), good ssh, cron, no problem to inst

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-22 Thread pbreit
PythonAnywhere Google App Engine Digital Ocean ($5/month) On Saturday, February 20, 2016 at 10:38:46 PM UTC-8, Rgb Aston wrote: > > Which one's the best to go for? > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-21 Thread Nbush
- windows hosting Azure web apps free plan (1Gb RAM, 1GB Disk) -- 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 received this message because you are s

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-03-14 Thread Mirek Zvolský
allwaysdata.com, but has only 10M place (about 6M after you install web2py-min), good ssh, cron, no problem to install everything. forpsi.com paid, but only 2$/month for full VM Dne neděle 21. února 2016 7:38:46 UTC+1 Rgb Aston napsal(a): > > Which one's the best to go for? > -- Resources: -

Re: [web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-02-26 Thread António Ramos
webfaction is very good 2016-02-26 15:59 GMT+00:00 Massimo Di Pierro : > I agree: > > pythonanywhere.com (free with limitation) > google app engine (also free with limitations) > digital ocean is $5/month for a full VM > > > On Friday, 26 February 2016 09:03:30 UTC-6, Manches spainspots wrote: >>

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-02-26 Thread Massimo Di Pierro
I agree: pythonanywhere.com (free with limitation) google app engine (also free with limitations) digital ocean is $5/month for a full VM On Friday, 26 February 2016 09:03:30 UTC-6, Manches spainspots wrote: > > It depends on your needs. I am new to web2py, so I just needed a small > place to

[web2py] Re: What are the platforms for free web hosting of web2py apps?

2016-02-26 Thread Manches spainspots
It depends on your needs. I am new to web2py, so I just needed a small place to learn. I found that at pythonanywhere.com and a decent free tutorial at Udemy. Good Luck! On Saturday, February 20, 2016 at 10:38:46 PM UTC-8, Rgb Aston wrote: > > Which one's the best to go for? > -- Resources:

[web2py] What are the platforms for free web hosting of web2py apps?

2016-02-20 Thread Rgb Aston
Which one's the best to go for? -- 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 received this message because you are subscribed to the Google Groups

[web2py] Re: Multiple web2py apps/domains on pythonanywhere

2015-08-04 Thread Joe
wrote: >> >> It took a while but I figured it out. >> >> On Monday, July 27, 2015 at 9:21:42 PM UTC+8, Joe wrote: >>> >>> What is the best way to host multiple web2py apps/domains on >>> pythonanywhere? >>> >>> If anyone has any

[web2py] Re: Multiple web2py apps/domains on pythonanywhere

2015-07-28 Thread JorgeH
so?? How did you manage to do it? Can you explain to us? I'm interested too. On Tuesday, July 28, 2015 at 2:36:14 AM UTC-5, Joe wrote: > > It took a while but I figured it out. > > On Monday, July 27, 2015 at 9:21:42 PM UTC+8, Joe wrote: >> >> What is the bes

[web2py] Re: Multiple web2py apps/domains on pythonanywhere

2015-07-28 Thread Joe
It took a while but I figured it out. On Monday, July 27, 2015 at 9:21:42 PM UTC+8, Joe wrote: > > What is the best way to host multiple web2py apps/domains on > pythonanywhere? > > If anyone has any experience with this, I would appreciate if you could > let me know the b

[web2py] Multiple web2py apps/domains on pythonanywhere

2015-07-27 Thread Joe
What is the best way to host multiple web2py apps/domains on pythonanywhere? If anyone has any experience with this, I would appreciate if you could let me know the best way to do this. I asked this question on the pythonanywhere support forum, they suggested to post the question here. They

[web2py] Re: Using CAS for non web2py apps

2015-03-02 Thread Kenneth
Hi, after reading the web2py book and some testing it starts to look like this is not possible. The Drupal installation will be on a different server Kenneth Den torsdag 26 februari 2015 kl. 11:15:58 UTC+2 skrev Kenneth: > > Hello, > > I'm trying to get an Drupal with the Drupal CAS module to

[web2py] Using CAS for non web2py apps

2015-02-26 Thread Kenneth
Hello, I'm trying to get an Drupal with the Drupal CAS module to authenticate against an web2py app. When I test to go with browser to the user/cas/login adress on my site I get the following message: not authorized Can anyone explain how to get this working? How do I return some user parame

[web2py] Re: Create iOS, Android(.apk) clients for your web2py apps in minutes with this

2014-03-22 Thread 黄祥
please take a look at this discussion : https://groups.google.com/forum/#!msg/web2py/ajfU4UurfZE/YBrqzAEHNfAJ best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/

[web2py] Create iOS, Android(.apk) clients for your web2py apps in minutes with this

2014-03-22 Thread sasogeek
What do you mean by consumes your web2py services? Is there such a platform that simply packages a fully built web2py app into an android app? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/w

[web2py] apps

2013-07-28 Thread Oliver
can i connect the same mysql db to my apps? for example, I have two apps and want to use the same username and login to the apps. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails fr

[web2py] Re: hi any webchat web2py apps?

2013-05-17 Thread samuel bonilla
no really i use node.js with www.balloons.io , but if u wanna, u can use tornado or twisted El viernes, 17 de mayo de 2013 00:15:29 UTC-5, Mika Sjöman escribió: > > Hi > > We wish to add a button on our frontpage that will enable users to contact > us via a webchat, something like this> http

[web2py] hi any webchat web2py apps?

2013-05-16 Thread Mika Sjöman
Hi We wish to add a button on our frontpage that will enable users to contact us via a webchat, something like this> http://mibew.org/demo.php But we do not want a PHP solution, do you know of any web2py solution? cheers -- --- You received this message because you are subscribed to the Goo

Re: [web2py] Re: Routing to different web2py apps in pythonanywhere

2013-04-11 Thread Jim Steil
domains) pointing to one of the same >>> web2py instance but behaving differently. >>> >>> Massimo >>> >>> On Friday, 8 February 2013 07:30:11 UTC-6, Jim S wrote: >>>> >>>> Hi >>>> >>>> Just got

[web2py] Re: Routing to different web2py apps in pythonanywhere

2013-04-11 Thread Cenk Yıldız
instead of using routes.py >> the relevant parameters is set in the wsgi config file to you can have >> multiple ones (for different domains) pointing to one of the same web2py >> instance but behaving differently. >> >> Massimo >> >> On Friday, 8 Februa

[web2py] Re: Setting Up Basic Authentication between 2 Web2Py Apps

2013-02-26 Thread Cliff Kachinske
place for it, not even in prototyping. Having multiple applications share tables may seem like a great idea. In practice, however, it makes upgrading a running application more difficult than it would be with a single app. On Monday, February 25, 2013 12:17:09 PM UTC-5, Subhamoy Sengupta wrote:

[web2py] Setting Up Basic Authentication between 2 Web2Py Apps

2013-02-25 Thread Subhamoy Sengupta
I have 2 Web2Py apps, *Provider* and *Accessor*. One allows basic authentication and the other one uses it for logging in. I have turned on username based login instead of e-mail based like this in the db.py of both apps: auth.define_tables(username=True, signature=False, migrate=True

[web2py] Re: Routing to different web2py apps in pythonanywhere

2013-02-08 Thread Jim S
> >> Hi >> >> Just got started with PythonAnywhere. I have multiple web2py apps I'd >> like to host there under the same web2py instance. However, I want >> different domain names to point to them. Can I use the web2py routes.py to >> do that, or is there

[web2py] Re: Routing to different web2py apps in pythonanywhere

2013-02-08 Thread Massimo Di Pierro
started with PythonAnywhere. I have multiple web2py apps I'd > like to host there under the same web2py instance. However, I want > different domain names to point to them. Can I use the web2py routes.py to > do that, or is there a better way to handle it with pythonanywhere. Their >

[web2py] Routing to different web2py apps in pythonanywhere

2013-02-08 Thread Jim S
Hi Just got started with PythonAnywhere. I have multiple web2py apps I'd like to host there under the same web2py instance. However, I want different domain names to point to them. Can I use the web2py routes.py to do that, or is there a better way to handle it with pythonanywhere.

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-13 Thread villas
+1 > > I am considering removing the -N option and disabling cron by default. > --

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread Massimo Di Pierro
BTW. Are you using rocket? If so, are you using the -N option? You should otherwise cron may do strange things. I am considering removing the -N option and disabling cron by default. On Friday, 12 October 2012 21:26:51 UTC-5, Massimo Di Pierro wrote: > > I tried with the welcome app and i canno

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread Massimo Di Pierro
I tried with the welcome app and i cannot reproduce this problem. Compiled or not compiled I see the memory increase, then move and down and then stabilizes. massimo On Friday, 12 October 2012 14:41:49 UTC-5, Massimo Di Pierro wrote: > > I will try reproduce and let you know. > > On Friday, 12

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread Massimo Di Pierro
I will try reproduce and let you know. On Friday, 12 October 2012 11:59:01 UTC-5, David Marko wrote: > > Its interal app so I cant provide the source. But I realised the app still > contains 'local_import' so I have replaced with 'import' but no effect. > Then I benchmarked both compiled and non

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread David Marko
Its interal app so I cant provide the source. But I realised the app still contains 'local_import' so I have replaced with 'import' but no effect. Then I benchmarked both compiled and non compiled version ... each 2x and non-compiled is fine, but compiled leaks memory ... a) non-compiled versi

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread Massimo Di Pierro
Can you show me? I would like to try reproduce it. We have recently changed the way db connections are collected and perhaps something is going wrong there? On Friday, 12 October 2012 09:11:29 UTC-5, David Marko wrote: > > Latest web2py trunk version from this morning, win7, python 2.7.3 . No >

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread David Marko
Latest web2py trunk version from this morning, win7, python 2.7.3 . No special settings in app, but model tried to be lazy, so everything is defined in Field methods. --

[web2py] Re: Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread Massimo Di Pierro
h more models. > > Are there any best practices to avoid memory leaks in web2py apps? > > Any experience? > David > --

[web2py] Whats your experience with memory leaks in web2py apps?

2012-10-12 Thread David Marko
oid memory leaks in web2py apps? Any experience? David --

[web2py] Re: Anybody run web2py apps on GAE in production?

2012-08-09 Thread howesc
> > How many requests per second do your apps serve? > > Do you use Datastore or Cloud SQL? Why? > > Would you recommend hosting web2py apps on GAE? > > Thanks! > > -- > Alexei Vinidiktov > --

  1   2   >