apache + mod_python配置出错求助

apache + mod_python配置出错求助

按照
http://www.djangoproject.com/documentation/modpython/
配置

[Copy to clipboard] [ - ]
CODE:
<Location "/django/">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE djangotest.settings
    PythonOption django.root /djangotest
    PythonDebug On
</Location>

启动Apache 报这个错:
Invalid command 'PythonHandler',perhaps misspelled or defined by a module not included in the server configuration
加载了模块了吗?

LoadModule python_module modules/mod_python.so
modules下面没有mod_python.so啊
教程上也没有提到..



QUOTE:
原帖由 xi2008wang 于 2008-9-1 01:15 发表
加载了模块了吗?

LoadModule python_module modules/mod_python.so

原来是mod_python没装好,没有在apache下生成mod_python.so

重新生成就OK了,多谢!
可以去py版,有我发的帖子