[Mailman-Users] Integrating Namazu with Mailman

2006-03-06 Thread Elvis Fernandes
Hello,

I am trying to integrate the namazu search with mailman archives.

I am able to get namzu list out the messages containg the search string.
But, when I click on the message, it just come back with the error:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable
to complete your request.

Please contact the server administrator,  and inform them of the time the
error occurred, and anything you might have done that may have caused the
error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying
to use an ErrorDocument to handle the request.

On checking the apache/error_log, I see the following message that has some
(8)Exec format error:

[Mon Mar 06 16:40:09 2006] [error] [client 143.103.41.10] File does not
exist: /disk1/mailman/favicon.ico
[Mon Mar 06 16:40:10 2006] [error] [client 143.103.41.10] (8)Exec format
error: exec of
'/disk1/mailman/cgi-bin/archives/private/sysadmin/2006-January/000161.html'
failed, referer:
http://utc80/mailman/Sysadmin/namazu.cgi?query=jamessubmit=Search%21max=20result=normalsort=score
[Mon Mar 06 16:40:10 2006] [error] [client 143.103.41.10] Premature end of
script headers: 000161.html, referer:
http://utc80/mailman/Sysadmin/namazu.cgi?query=jamessubmit=Search%21max=20result=normalsort=score
[Mon Mar 06 16:40:11 2006] [error] [client 143.103.41.10] File does not
exist: /disk1/mailman/favicon.ico


Has anyone successfully accomplised mailman+namazu+apache integration?
BTW, I went with the referernce document at :

http://mail.python.org/pipermail/mailman-users/2004-June/037580.html

Any help will be appreciated.

Thanks
Elvis Fernandes

*
***
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] Integrating Namazu with Mailman

2006-03-06 Thread Mark Sapiro
Elvis Fernandes wrote:

On checking the apache/error_log, I see the following message that has some
(8)Exec format error:

[Mon Mar 06 16:40:09 2006] [error] [client 143.103.41.10] File does not
exist: /disk1/mailman/favicon.ico

Above is not a problem.
[Mon Mar 06 16:40:10 2006] [error] [client 143.103.41.10] (8)Exec format
error: exec of
'/disk1/mailman/cgi-bin/archives/private/sysadmin/2006-January/000161.html'
failed, referer:
http://utc80/mailman/Sysadmin/namazu.cgi?query=jamessubmit=Search%21max=20result=normalsort=score


This is definitely a problem. It appears that the namazu.cgi script is
trying to redirect the query to something like
http://utc80/mailman/archives/private/sysadmin/2006-January/000161.html
which should really be
http://utc80/mailman/private/sysadmin/2006-January/000161.html - it
looks like you may have configured a path where you should have
configured a URL.


[Mon Mar 06 16:40:10 2006] [error] [client 143.103.41.10] Premature end of
script headers: 000161.html, referer:
http://utc80/mailman/Sysadmin/namazu.cgi?query=jamessubmit=Search%21max=20result=normalsort=score


This is probably a consequence of the above error.

-- 
Mark Sapiro [EMAIL PROTECTED]   The highway is for gamblers,
San Francisco Bay Area, Californiabetter use your sense - B. Dylan

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] integrating namazu with mailman

2005-05-25 Thread Sean

 Hi

 I am using the info found here http://mail.python.org/pipermail/
 mailman-users/2004-June/037580.html as well as various similar stuff
 I found through google.  However, this link is my main info.

 I have namazu installed and followed the instructions found in the
 above link.

 When I try a search on my test list, I get a 500 Internal Server
 Error and the following line in my apache error log.

 [Tue May 24 12:46:42 2005] [error] [client XX.XX.XX.XX] Premature end
 of script headers: /web/host.com/mailman/cgi-bin/Admin-List/namazu.cgi

 It seems that the cgi is not being called correctly.  Here is what it
 is calling

 (from the access log)

 XX.XX.XX.XX - - [24/May/2005:12:46:42 -0600] GET /mailman/Admin-List/
 namazu.cgi?query=namazusubmit=Search%21idxname=Admin-
 Listmax=20result=normalsort=score HTTP/1.1 500 628


 --

 I can access the namazu command on the command line and it seems to
 work.

 Has anyone who has implemented this, or anyone else who has an idea,
 see what is wrong with the query and my namazu.cgi would not return
 correct stuff?

 Thanks
 Chad

Are you running Apache as your web server?  Here is what the apache docs
say about this:

  http://httpd.apache.org/docs/misc/FAQ-F.html#premature-script-headers

Sean
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


Re: [Mailman-Users] integrating namazu with mailman

2005-05-25 Thread Chad Leigh -- Shire.Net LLC

On May 25, 2005, at 5:32 AM, Sean wrote:



 (from the access log)

 XX.XX.XX.XX - - [24/May/2005:12:46:42 -0600] GET /mailman/Admin- 
 List/
 namazu.cgi?query=namazusubmit=Search%21idxname=Admin-
 Listmax=20result=normalsort=score HTTP/1.1 500 628


 Are you running Apache as your web server?  Here is what the apache  
 docs
 say about this:

   http://httpd.apache.org/docs/misc/FAQ-F.html#premature-script- 
 headers


I figured out the problem.  The directory the cgi was in had a bad  
owner.

Thanks
Chad

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp


[Mailman-Users] integrating namazu with mailman

2005-05-24 Thread Chad Leigh -- Shire.Net LLC
Hi

I am using the info found here http://mail.python.org/pipermail/ 
mailman-users/2004-June/037580.html as well as various similar stuff  
I found through google.  However, this link is my main info.

I have namazu installed and followed the instructions found in the  
above link.

When I try a search on my test list, I get a 500 Internal Server  
Error and the following line in my apache error log.

[Tue May 24 12:46:42 2005] [error] [client XX.XX.XX.XX] Premature end  
of script headers: /web/host.com/mailman/cgi-bin/Admin-List/namazu.cgi

It seems that the cgi is not being called correctly.  Here is what it  
is calling

(from the access log)

XX.XX.XX.XX - - [24/May/2005:12:46:42 -0600] GET /mailman/Admin-List/ 
namazu.cgi?query=namazusubmit=Search%21idxname=Admin- 
Listmax=20result=normalsort=score HTTP/1.1 500 628


--

I can access the namazu command on the command line and it seems to  
work.

Has anyone who has implemented this, or anyone else who has an idea,  
see what is wrong with the query and my namazu.cgi would not return  
correct stuff?

Thanks
Chad

--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=showamp;file=faq01.027.htp