Hi, Thanks to all the reply I got for my question PHP3 or Zope. I'm wanting to give it a try, but .... I've RedHat 5.2 installed with running Apache I'm trying to install Zope, but am expiering some problems : I've downloaded the binary and installed it into /usr/local/dc/Zope-1.10.2 installed it with ./install -sAdmin:Admin the var directory of Zope is permissioned for nobody (done by Zope) As in the manual, Zope created access with Admin:Admin, but it says login with Zope:Admin copied the Zope.cgi to the directory /home/httpd/cgi-bin I want to use it with Apache so I had something to change in the conf file of Apache... Apache has 3 conf files. At the moment it is written in all 3 of the files (because none of them work!). This is the piece of script I've written : (from WEBSERVER.txt) #Zope configuration maps /Zopz/ to the Zope.cgi CGI script RewriteEngine on RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^/Zope/(.*) /home/httpd/cgi-bin/Zope.cgi/$1 [e=HTTP-CGI-AUTHORIZATION:%1, t=application/x-httpd-cgi,l)] When trying to browse to http://localhost/cgi-bin/manage I get the password dialog... I enter Admin , Admin and am refused (same with Zope, Admin) .... What am I doing wrong????? -------------------------------------- Now try to use ZopeHTTPServer I can't find anywhere the file serve.sh BUT I tried to start it with start then going to webbrowser http://localhost:9673/manage I get a message of DNS problem etc... So not even a question of password... ---------------- Can somebody tell me what I've done wrong? I want to get it to work with Apache... What do I've to do? Thanks in advance, Tom.
Hi Tom, Try this:- RewriteEngine on RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^/Zope/(.*) /home/httpd/cgi-bin/Zope.cgi/$1 [e=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] Notice the underscores, where you had hyphens. HTH Phil phil@philh.org ----- Original Message ----- From: Tom Deprez <Tom.Deprez@uz.kuleuven.ac.be> To: <zope@zope.org> Sent: 26 March 1999 19:03 Subject: [Zope] installing Zope
Hi,
Thanks to all the reply I got for my question PHP3 or Zope.
I'm wanting to give it a try, but ....
I've RedHat 5.2 installed with running Apache
I'm trying to install Zope, but am expiering some problems :
I've downloaded the binary and installed it into
/usr/local/dc/Zope-1.10.2
installed it with ./install -sAdmin:Admin
the var directory of Zope is permissioned for nobody (done by Zope)
As in the manual, Zope created access with Admin:Admin, but it says login with Zope:Admin
copied the Zope.cgi to the directory /home/httpd/cgi-bin
I want to use it with Apache so I had something to change in the conf file of Apache... Apache has 3 conf files. At the moment it is written in all 3 of the files (because none of them work!).
This is the piece of script I've written : (from WEBSERVER.txt)
#Zope configuration maps /Zopz/ to the Zope.cgi CGI script
RewriteEngine on RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^/Zope/(.*) /home/httpd/cgi-bin/Zope.cgi/$1 [e=HTTP-CGI-AUTHORIZATION:%1, t=application/x-httpd-cgi,l)]
When trying to browse to http://localhost/cgi-bin/manage I get the password dialog... I enter Admin , Admin and am refused (same with Zope, Admin) ....
What am I doing wrong?????
--------------------------------------
Now try to use ZopeHTTPServer
I can't find anywhere the file serve.sh
BUT I tried to start it with start
then going to webbrowser http://localhost:9673/manage
I get a message of DNS problem etc...
So not even a question of password...
----------------
Can somebody tell me what I've done wrong? I want to get it to work with Apache... What do I've to do?
Thanks in advance,
Tom.
_______________________________________________ Zope maillist - Zope@zope.org http://www.zope.org/mailman/listinfo/zope
(For developer-specific issues, use the companion list, zope-dev@zope.org - http://www.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
Phil Harris -
Tom Deprez