[web2py:31672] What the license means?

2009-09-25 Thread dekushrub
Hey everyone, I don't fully understand what the license fully means so if some could explain it to me that would be great. I was planning on developing some commercial webapps with them. Is that allowed and if so, what sort of reference do I have to put on my page for web2py? --~--~-~--~

[web2py:31674] Re: What the license means?

2009-09-25 Thread dekushrub
y other then the one I provide. > > You are allowed to bundle web2py (either source or official binary) > with your applications. You have to make clear that you are selling > your application, not web2py, even if they are distributing them > together in the same zip file. >

[web2py:32812] Deploying Web2py on a server without root access

2009-10-13 Thread dekushrub
Hey, I'm trying to write a website for a student group and we don't have root access. It's an apache server that has python installed on it, how do I take my webapp and make it run on the server? --~--~-~--~~~---~--~~ You received this message because you are subscr

[web2py:32956] Re: deploying web2py on cpanel shared hosting

2009-10-15 Thread dekushrub
Did you ever figure it out? I'm trying to do the same thing On Oct 6, 7:57 pm, whiskeyjuvenile wrote: > This works: > > from mod_python import apache > > def handler(req): >     req.content_type = 'text/plain' >     req.write("Hello World!") >     return apache.OK > > If I insert the line "impor