我可以第一次让mod-python在apache2上工作,并且可以通过添加任一命令来稍微玩PSP和Publisher处理程序

AddHandler mod_python .py
PythonHandler mod_python.publisher
PythonDebug On


要么

AddHandler mod_python .psp
PythonHandler mod_python.psp
PythonDebug On


到Ubuntu lucid lynx上的/ etc / apache2 / sites-available / default。

我试着把它们都放了,但这没用。现在,我需要PSP和Publisher一起工作。

还有些东西,有人知道一个文本编辑器支持此功能的突出显示吗?最好在有代码完成或IDE的情况下。

最佳答案

这对我有用:

<Directory /var/www>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
        AddHandler mod_python .py
        PythonHandler mod_python.publisher | .py
        AddHandler mod_python .psp .psp_
        PythonHandler mod_python.psp | .psp .psp_
        PythonDebug On
</Directory>


有关更多详细信息,请阅读手册:http://www.modpython.org/live/current/doc-html/dir-handlers-syn.html

关于python - 在Apache2 mod-python中使PSP和Publisher处理程序一起工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3860957/

10-12 21:56