让 PSP 和 Publisher 处理程序在 Apache2 mod-python 中协同工作

发布于 2024-09-26 06:34:14 字数 453 浏览 8 评论 0原文

我可以让 mod-python 第一次在 apache2 上工作,并且我可以通过添加

AddHandler mod_python .py
PythonHandler mod_python.publisher
PythonDebug On

Or

AddHandler mod_python .psp
PythonHandler mod_python.psp
PythonDebug On

到 Ubuntu lucid lynx 上的 /etc/apache2/sites-available/default 来使用 PSP 和 Publisher 处理程序。

我尝试将它们都放入,但没有成功。现在我需要 PSP 和 Publisher 一起工作。

还有其他问题吗,有人知道支持突出显示的文本编辑器吗?最好有代码补全或 IDE。

I could just have mod-python working on apache2 for the first time and I could play with PSP and Publisher handler a little by adding either

AddHandler mod_python .py
PythonHandler mod_python.publisher
PythonDebug On

Or

AddHandler mod_python .psp
PythonHandler mod_python.psp
PythonDebug On

to /etc/apache2/sites-available/default on Ubuntu lucid lynx.

I tried putting both of them but that didn't work. Now I need both PSP and Publisher to work together.

Something else please, any one know a text editor that supports highlighting for this ? preferably if there is code completion or an IDE.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小清晰的声音 2024-10-03 06:34:14

这对我有用:

<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

This one works for me:

<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>

For more details read the manual: http://www.modpython.org/live/current/doc-html/dir-handlers-syn.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文