[Zope] Problems logging into Zope

jennyw jennyw at dangerousideas.com
Sun Nov 9 02:37:25 EST 2003


On Sat, Nov 08, 2003 at 10:23:53PM -0800, Dennis Allison wrote:

> Can you get to the ZMI ( localhost:8080 is a usual path to Zope,
> localost:8080/manage takes you to the ZMI with a bit of password
> negotiation).

It took a second for me to realize it's running on port 9673.  I can login fine! 
Once I realized it was apache, I took a closer look at the mod_rewrite stuff:

<IfModule mod_rewrite.c>
RewriteEngine on
  RewriteCond %{HTTP:Authorization}  ^(.*)
  RewriteRule ^/Zope/(.*) /usr/lib/cgi-bin/Zope/$1 [e=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l]
</IfModule>

I changed the rule to:

RewriteRule ^/cgi-bin/Zope.cgi/(.*) /usr/lib/cgi-bin/Zope.cgi/$1 [e=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l]

and it works!

Thanks!

Jen



More information about the Zope mailing list