让 PSP 和 Publisher 处理程序在 Apache2 mod-python 中协同工作
我可以让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我有用:
有关更多详细信息,请阅读手册: http://www.modpython.org/live/current/doc-html/dir-handlers-syn.html
This one works for me:
For more details read the manual: http://www.modpython.org/live/current/doc-html/dir-handlers-syn.html