Overview of features
Home
Read this first
About
web2py is 100% free
Download
Start learning web2py today
Documentation
Authors and contributors
Staff
Affiliated companies
Support
Edit page
Title:
Security Code:
Body:
(use
this
wiki markup)
For run web2py needed the following: 1. Place contents of web2py into the htdocs folder. 2. From modpythonhandler.py remove Grave Accent (`) symbol at the end of file, if that exists. 3. Create web2py_modpython.py file: from mod_python import apache import modpythonhandler def handler(req): req.subprocess_env['PATH_INFO'] = \ req.subprocess_env['SCRIPT_URL'] return modpythonhandler.handler(req) 4. create/update .htaccess file: SetHandler python-program PythonHandler web2py_modpython ##PythonDebug On niktar