On Oct 23, 4:43 am, José Luna Venezuela <jlun...@gmail.com> wrote:
> Hi i whant to know what hosting provider offer suport for web2py or i
> need to have a vps if i whant to make a web page?

You can use any (Linux) host that provides:

1) SSH access
2) FastCGI & .htaccess

Many, many hosts provide these.  If these things are available, then
you will

a) fetch latest python source, ./configure --prefix=$HOME, make, make
install
b) fetch latest virtualenv, build against local python, create a new
virtual env in $HOME/local
c) fetch ez-setup.py and run from local python, e.g. $HOME/local/bin/
python ez-setup
d) easy_install flup
e) you may want to install the latest pysqlite if you're using that
f) fetch latest web2py source, extract contents into $HOME/public_html/
web2py
g) edit $HOME/public_html/web2py/.htaccess to have:

AddHandler fcgid-script .fcgi
RewriteEngine On
# This blank line is important!

# Needed if you don't have a domain to yourself, or are waiting for
one
# RewriteBase /home/~myaccount
RewriteRule RewriteRule ^web2py\.fcgi/ - [L]
RewriteRule ^(.*)$ web2py.fcgi/$1 [L]

h) Apparently routes.py doesn't do anything right now.   Jonathan
Lundell is looking into it.

Reply via email to