Re: mod_perl from cvs on windows

2000-01-09 Thread Matt Sergeant
On Sun, 09 Jan 2000, Ask Bjoern Hansen wrote: Hi, It would be very cool if we could get a new release out soon, but I am not sure the latest mod_perl from cvs have been tested on windows? Could anyone give a "ok" report? We shoud know about both "standard win32" perl and ActiveState Perl.

Search engines with mod_perl

2000-01-09 Thread Bill Moseley
I'm looking for a simple search engine server to use with mod_perl. Does anyone have experience or recommendations on what works well (or doesn't work well) when developing with mod_perl? Phrase searching, word truncation, word stemming, and thesaurus lookup are desired features. This would be

Re: Search engines with mod_perl

2000-01-09 Thread Matt Sergeant
On Sun, 09 Jan 2000, Bill Moseley wrote: I'm looking for a simple search engine server to use with mod_perl. Does anyone have experience or recommendations on what works well (or doesn't work well) when developing with mod_perl? Phrase searching, word truncation, word stemming, and

Re: Search engines with mod_perl

2000-01-09 Thread Bill Moseley
At 04:21 PM 1/9/00 +, Matt Sergeant wrote: On Sun, 09 Jan 2000, Bill Moseley wrote: I'm looking for a simple search engine server to use with mod_perl. Does anyone have experience or recommendations on what works well (or doesn't work well) when developing with mod_perl? Phrase

Re: Search engines with mod_perl

2000-01-09 Thread siberian
You could try UDMSearch. I run it as a registry script wrapped in Apache::SSI and it works pretty well. Not sure if it meets all your requirements or not but its worth a gander. http://mysearch.udm.net/ John- On Sun, 9 Jan 2000, Bill Moseley wrote: At 04:21 PM 1/9/00 +, Matt Sergeant

Perl modules in apache configuration

2000-01-09 Thread tarkhil
Hello! I'm trying to configure httpd.conf using Perl sections (mod_macro is not enough for me), but the result is weird. The most weird thing is that Perl sections randomly doesn't execute! I have no experience (yet) with Perl configuration modules, so I don't understand where to start

RE: URL Redirection

2000-01-09 Thread Gerald Richter
As I was having problem to set up Embperl as CGI, I found out a way to workaround that. To call HTML::Embperl::Execute from my perl script and pass the html document as parameter. This works OK. That is, like Tom and Vivek pointed out, cgiwrapper eats the PATH_INFO and

Re: Perl modules in apache configuration

2000-01-09 Thread Eric
On Sun, Jan 09, 2000 at 08:47:04PM +0300, [EMAIL PROTECTED] wrote: Hello! I'm trying to configure httpd.conf using Perl sections (mod_macro is not enough for me), but the result is weird. The most weird thing is that Perl sections randomly doesn't execute! I have no experience (yet)

Re: Perl modules in apache configuration

2000-01-09 Thread tarkhil
"Eric" == Eric writes: Eric On Sun, Jan 09, 2000 at 08:47:04PM +0300, [EMAIL PROTECTED] wrote: I'm trying to configure httpd.conf using Perl sections (mod_macro is not enough for me), but the result is weird. Eric Do you have a specific example of your config, and what doesn't work, Eric

Trouble installing mod_perl

2000-01-09 Thread gnielson
I am encountering some errors when trying to get an existing Apache server to support mod_perl. I had no problem with perl with Makefile.pl. I then ran ./config.status --activate-module=src/modules/perl/libperl.a without a problem. But then, when I ran make, I got a slew of errors, listed

Re: URL Redirection

2000-01-09 Thread Vijay
Hello, I got a work around for the problem I am having. - Set a cookie header using meta command as set-cookie is not working properly on my box thru mod_perl. Somewhere it is creating a problem and I am not sure where. Using meta command I set up a cookie for the session id. - Create

Cryptic errors -simple Apache::Registry script ??? (newbie)

2000-01-09 Thread John Walker
I've got a script (hello.pl from the Eagle book). It runs succesfully once and generates 500 errors. So I dig around and find this in the errors: [Sun Jan 9 15:26:38 2000] [error] Can't upgrade that kind of scalar at /usr/lib/perl5/site_perl/5.005/i386-linux/Apache/Registry.pm line 32. HMM.

Memory leak/server crashes

2000-01-09 Thread James Furness
I'm looking for some help getting apache to run reliably. Apache 1.3.9 with mod_perl 1.21 and Perl 5.005_03 is running on a dual P500 with 1 Gb of RAM running Redhat 6.1. We run about 5 sites off the box, most of which are fairly high traffic, and use a lot of CGI and MySQL 3.22.25 is used with

setting query in PerlTransHandler

2000-01-09 Thread Ajay Shah
This maybe be repeated becuase I sent the first message via Geo Crawlere and don't know how long they are going to take to review the message. Sorry if it comes in twice. I am writing a simple PerlTransHandler that is going to change the request into another with query string. The following is

Re: Memory leak/server crashes

2000-01-09 Thread Sean Chittenden
Try using Apache::SizeLimit as a way of controlling your processes. Sounds like a recursive page that performs infinite internal requests. -- Sean Chittenden [EMAIL PROTECTED] fingerprint = 6988 8952 0030 D640 3138 C82F 0E9A DEF1 8F45 0466 My mother once

setting query in TransHandler

2000-01-09 Thread Ajay Shah
This message was sent from Geocrawler.com by "Ajay Shah" [EMAIL PROTECTED] Be sure to reply to that address. Hello list, This is my first post so bear with me. I am trying to write a simple PerlTransHandler that is going to modify the uri into something. I want to modify the following

Re: Memory leak/server crashes

2000-01-09 Thread James Furness
Try using Apache::SizeLimit as a way of controlling your processes. Sounds like a recursive page that performs infinite internal requests. Ok, sounds like a good solution, but it still seems to me I should be eliminating the problem at the source. Any ideas as to how I could narrow down the

Re: Memory leak/server crashes

2000-01-09 Thread Chip Turner
"James Furness" [EMAIL PROTECTED] writes: I'm looking for some help getting apache to run reliably. Apache 1.3.9 with mod_perl 1.21 and Perl 5.005_03 is running on a dual P500 with 1 Gb of RAM running Redhat 6.1. We run about 5 sites off the box, most of which are fairly high traffic, and

Re: Memory leak/server crashes

2000-01-09 Thread Sean Chittenden
Yeah... two things I'd do: 1) Open two telnet sessions to the box. One for top that is monitoring processes for your web user (www typically) and is sorting by memory usage w/ a 1 second refresh. I'd change the size of the window and make it pretty short so that the refreshes

Dedicated dynamic content servers...

2000-01-09 Thread Sean Chittenden
Is it possible to 'short circuit' some of the request handlers in apache? I'm building a dedicated dynamic content server that is getting some really bizarre input through the URI and it doesn't map to a file, instead a Translation Handler deals with the request and sets some

Re: Memory leak/server crashes

2000-01-09 Thread Stas Bekman
On Sun, 9 Jan 2000, Sean Chittenden wrote: Yeah... two things I'd do: 1) Open two telnet sessions to the box. One for top that is monitoring processes for your web user (www typically) and is sorting by memory usage w/ a 1 second refresh. I'd change the size of the window

Re: setting query in PerlTransHandler

2000-01-09 Thread Randal L. Schwartz
"Ajay" == Ajay Shah [EMAIL PROTECTED] writes: Ajay /articles/10/index.html = /articles/index.html?id=10 Ajay This is what I tried. Ajay sub handler { Ajay my $r = shift; Ajay my $uri = $r-uri; Ajay my ($id) = ($uri =~ m|^/articles/(.*?)/|); Ajay my $newuri =

Re: Dedicated dynamic content servers...

2000-01-09 Thread Randal L. Schwartz
"Sean" == Sean Chittenden [EMAIL PROTECTED] writes: Sean Because the one of the following core apache handlers checks $r-filename Sean before my Auth handler runs... I get 404ed. What I can do is role all of Sean my functionality into a single Trans handler, but that's no good and not Sean

Re: Weird message from make test

2000-01-09 Thread G.W. Haywood
Hi there, On Sat, 8 Jan 2000, Nancy Lin wrote: If it's not the test script that's bad, then it would have to be CGI.pm, no? No. 73 Ged.

Re: [JOB] ground-floor opportunity with ownership stake

2000-01-09 Thread Fabrice Scemama
Methinks certain `job' offers should be filtered... Having several mod_perl engineers work for free for five months, most businesses should be quite prosperous, indeed ;-) Not my business anyway. David Harris wrote: We have an outstanding ground-floor opportunity for the right person. Must

Dynamically-generated navigation bar

2000-01-09 Thread Don Schwarz
I'm trying to quickly create a web site for a project that I'm going to be working on for the next few months. So far, mod_perl has been a wonderful help. However, I now need to implement a nice site-wide navigation bar. The site will be changing quickly and I don't want to spend much time

Re: Caching with $r-no_cache(1)

2000-01-09 Thread Randy Harmon
On Sun, Jan 09, 2000 at 08:45:11PM +, G.W. Haywood wrote: On Fri, 7 Jan 2000, Randy Harmon wrote: Does anybody have experience detecting such a condition, perhaps through one of the client headers? I haven't had a chance to dump them - many hats. No idea - ditto. In any case, I