You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-dev@quetz.apache.org by Firat KUCUK <fi...@kucuk.org> on 2006/03/21 14:09:14 UTC

mod_python directory index error

Hi,

i have a little problem about Directory Index.

this is our .htaccess file:

Allow from       All

AddHandler       mod_python .py
PythonHandler    wepy.handler
PythonDebug      On

DirectoryIndex   index.htm index.html index.php index.py index.pl

wepy is a new PHP like web python library.

http://www.wepy.org/

we just type http://blablabla.com/wepy/

and our main file is index.py

but req.path_info is None

so in mod_python/apache.py/build_cgi_env function:

    *if* req.path_info *and* len(req.path_info) > 0:
        env[*"SCRIPT_NAME"*] = req.uri[:-len(req.path_info)]
    *else*:
        env[*"SCRIPT_NAME"*] = req.uri


i think should be like this.

    if req.path_info:
        env["SCRIPT_NAME"] = req.uri[:-len(req.path_info)]
    else:
        env["SCRIPT_NAME"] = req.uri


regards





-- 
*Öğr. Gör. Fırat KÜÇÜK*
Industrial Electronics Program Coordinator

-----------------------------------------------------------
  Department of Industrial Electronics
  Sakarya University, Adapazari Vocational College
  + 90 (264) 346 02 32, fkucuk[at]sakarya[dot]edu[dot]tr
  http://www.adamyo.sakarya.edu.tr/

  http://firat.kucuk.org/, firat[at]kucuk[dot]org
-----------------------------------------------------------