Re: [Zope] Yet another apache + zope config questions
Traceback (innermost last):File /usr/local/zope/lib/python/ZPublisher/Publish.py, line 214, in publish_module File /usr/local/zope/lib/python/ZPublisher/Publish.py, line 179, in publish File /usr/local/zope/lib/python/ZPublisher/Publish.py, line 151, in publish File /usr/local/zope/lib/python/ZPublisher/BaseRequest.py, line 442, in traverse File /usr/local/zope/lib/python/ZPublisher/HTTPResponse.py, line 549, in unauthorized Unauthorized: (see above) Zope.cgi #!/usr/local/zope/pcgi/pcgi-wrapper PCGI_NAME=Zope PCGI_MODULE_PATH=/usr/local/zope/lib/python/Zope PCGI_PUBLISHER=/usr/local/zope/pcgi/pcgi_publisher.py PCGI_EXE=/usr/local/zope/bin/python PCGI_SOCKET_FILE=/usr/local/zope/var/pcgi.soc PCGI_PID_FILE=/usr/local/zope/var/pcgi.pid PCGI_ERROR_LOG=/usr/local/zope/var/pcgi.log PCGI_DISPLAY_ERRORS=1 BOBO_REALM=/usr/local/zope/Zope.cgi BOBO_DEBUG_MODE=1 INSTANCE_HOME=/usr/local/zope I get nothing in my rewrite log at level 9. Any suggestions? On Sat, 04 Sep 1999 12:14:42 -0400, Michel Pelletier wrote:
Geoffrey Makstutis wrote:
Hi,
I know that there is ample discussion in the docs and faq regarding the configuration of an existing web server and zope, but I still can't get it to
work.
Here's my configuration: Suse Linux 6.2 Apache 1.3.6 w/mod_rewrite loaded
Zope is installed in /usr/local/zope Zope CGI is in /usr/local/httpd/cgi-bin
Rewrite Rules are: RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^/Zope(.*) /cgi-bin/Zope.cgi$1 [e=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l]
/usr/local/zope is defined in httpd.conf with execute options
No matter how I try this, I still can't get authentication.
How and where does it fail? What is the traceback? What do the RewriteLogs say when you jack them to level 9? Does your Zope.cgi file contain the correct information?
-Michel
Any help would be greatly appreciated.
Thanks
Geoffrey Makstutis ------------------------------------ 51% Studios Ltd Architecture - Design 1-5 Clerkenwell Road London EC1M 5PA gmak@51pct.com -------------------------------------
_______________________________________________ Zope maillist - Zope@zope.org http://www.zope.org/mailman/listinfo/zope
(To receive general Zope announcements, see: http://www.zope.org/mailman/listinfo/zope-announce
For developer-specific issues, zope-dev@zope.org - http://www.zope.org/mailman/listinfo/zope-dev )
Geoffrey Makstutis ------------------------------------ 51% Studios Ltd Architecture - Design 1-5 Clerkenwell Road London EC1M 5PA gmak@51pct.com -------------------------------------
----- Original Message ----- From: Geoffrey Makstutis <gmak@51pct.com>
BOBO_REALM=/usr/local/zope/Zope.cgi
This line is *very* wrong. The authentication process probably chokes on this. It needs to be something simple, like: BOBO_REALM=Zope or BOBO_REALM=MySiteRealm
participants (2)
-
Evan Simpson -
Geoffrey Makstutis