Project

General

Profile

1
# replace the name of this file to .htaccess (if using apache),
2
# and set the proper options and paths according your enviroment
3

    
4
Allow from all
5

    
6
# If using mod_python uncomment this:
7
PythonPath "[r'C:\Archivos de programa\Apache Software Foundation\Apache2.2\htdocs\fckeditor\editor\filemanager\connectors\py'] + sys.path"
8

    
9

    
10
# Recomended: WSGI application running with mod_python and modpython_gateway
11
SetHandler python-program
12
PythonHandler modpython_gateway::handler
13
PythonOption wsgi.application wsgi::App
14

    
15

    
16
# Emulated CGI with mod_python and cgihandler
17
#AddHandler mod_python .py
18
#PythonHandler mod_python.cgihandler
19

    
20

    
21
# Plain old CGI
22
#Options +ExecCGI
23
#AddHandler cgi-script py
(7-7/10)