Re: Silly Newbie Question: cookies and such

2001-11-12 Thread Cees Hek
On Tue, 13 Nov 2001 04:28, you wrote: > I need to make an Apache module (not a Registry script) which will: > > 1. Check for a cookie, and if not there, pushhandler to a module for > logging in (keeping the original request at hand for use after they > succeed in logging in). > 2. Extract data fro

Re: Apache::Sandwich, etc

2001-11-12 Thread Jie Gao
On Mon, 12 Nov 2001, Mark Maunder wrote: > Jie Gao wrote: > > > Hi All, > > > > I am wondering if it is possible to add a footer to dynamic pages, > > server-wide, like the subject module does to static pages. > > > > One apparent way to me is to add another content handler, but > > I am not sure

Re: xml parsing under mod_perl segfaults

2001-11-12 Thread Matthew H. Gerlach
For the record, I was unsuccessful using Apache 1.3.22, configured to use the "system" expat library, with XML::Parser 2.30. In the end I switched to using XML::LibXML. Matthew H. Gerlach Matt Sergeant wrote: > > -Original Message- > > From: Artem Litvinovich [mailto:[EMAIL PROTECT

Re: [OT] dont understand mem-mapping

2001-11-12 Thread Robert Landrum
At 10:19 AM +0800 11/12/01, Stas Bekman wrote: > >2. apparently you have the same problem as 'too many connections' >problem, and therefore want to look at Apache::DBI for understanding >the problem and coming up with a similar solution for your problem. I had similar problems, and unforunatly

Silly Newbie Question: cookies and such

2001-11-12 Thread Jon Robison
Unfortunatly, I find myself with a silly newbie question: I need to make an Apache module (not a Registry script) which will: 1. Check for a cookie, and if not there, pushhandler to a module for logging in (keeping the original request at hand for use after they succeed in logging in). 2. Extrac

Re: Apache::Sandwich, etc

2001-11-12 Thread Vivek Khera
> "JG" == Jie Gao <[EMAIL PROTECTED]> writes: JG> I am wondering if it is possible to add a footer to dynamic pages, JG> server-wide, like the subject module does to static pages. Apache::Sandwich will work with whatever content handler you want, including dynamic ones. See the docs. -- =

Re: open-source suggestion for a knowledge-base/search engine?

2001-11-12 Thread James G Smith
Grant Babb <[EMAIL PROTECTED]> wrote: >--=_3114418==_.ALT >Content-Type: text/plain; charset="us-ascii"; format=flowed > > >>all- >> >> In our migration to open-source solutions, I have been asked to >> suggest a solution for our knowledge base. We have found that a

Re: open-source suggestion for a knowledge-base/search engine?

2001-11-12 Thread Oleg Bartunov
If you may use PostgreSQL as a database engine, there is an OpenFTS (openfts.sourceforge.net). I'm one of the author, so I'm biased a little bit, but we have successfully use it in many projects with close integration with mod_perl (Mason). regards, Oleg On Mon, 12 Nov 20

open-source suggestion for a knowledge-base/search engine?

2001-11-12 Thread Grant Babb
all- In our migration to open-source solutions, I have been asked to suggest a solution for our knowledge base.  We have found that a well-indexed text search is really a more effective way to go, but I was hoping for some suggestions from this list on some mod_perl based projects or apac

[OT] AxKit: We're Back!

2001-11-12 Thread Matt Sergeant
-- Forwarded message -- Date: Mon, 12 Nov 2001 07:12:00 + (GMT) From: Matt Sergeant <[EMAIL PROTECTED]> To: AxKit Users Mailing List <[EMAIL PROTECTED]> Subject: [OT] AxKit: We're Back! Well, after around 12 or 13 weeks outage, axkit.org, axkit.com, and (less disconcerting) se

Re: Internal server error on Refreshing mod_perl page ( Apache::ASP )

2001-11-12 Thread SubbaReddy M
Thanks alot Joshua, You ar right, by turning off the PerlTaintCheck , PerlTaintCheck Off in my httpd.conf. It's fixed. >>My dev versions of Apache::ASP ( 2.29 ) & MLDBM::Sync ( .25 ) >>will be able to run under PerlTaintCheck On, let me know if you >>would like these pre release. And I would l

asp perl problem

2001-11-12 Thread Julian Martin
Hi I am new to perl and would like to make a asp page with a script that will find all files in a given directory and create links to different files in another directory. The two sets of files are images (thumbnails and big pics) so I would also like to show the thumbnails on the page and have th

Apache::OutputChain vs. Apache::Filter

2001-11-12 Thread Issac Goldstand
Just out of curiosity, which of these two modules are more popularly used?  I have to make some sort of inline SSI processing in one of my modules, and am curious to know how other people do it... I know that different people will do different things depending on the situation, and that ther

Re: dont understand mem-mapping

2001-11-12 Thread Stas Bekman
Peter Pilsl wrote: > I just cant get the following in my brain. I have a modules that is > started with apache using the PerlModule-directive in httpd.conf. > > This module defines a global pointer on startup that should be the > same in all sub-instances of httpd and really in the current > ap

Can't install Apache::Request on Linux

2001-11-12 Thread Jonathan Bennett
I suspect all this is is a path problem, but I'm not sure where to stuff the appropriate line With: Linux 2.2.17 on x86 Apache 1.3.19 Perl 5.6.1 mod_perl 1.26 I can't install Apache::Request using either CPAN.pm or manually. Both give the error: Request.xs:40 mod_perl.h: No such file or dire

Re: xml parsing under mod_perl segfaults

2001-11-12 Thread Philip Mak
On Mon, 12 Nov 2001, Artem Litvinovich wrote: > Since my freeBSD setup is a "virtual private server" from verio I > cannot easily recompile+reinstall apache. I have a virtual private server account from Verio too. What you could do, is compile your own Apache and run it on a high port, then setu

[OT] AxKit: Back online

2001-11-12 Thread Matt Sergeant
This post doesn't seem to have hit the list: -- Forwarded message -- Date: Mon, 12 Nov 2001 07:12:00 + (GMT) From: Matt Sergeant <[EMAIL PROTECTED]> To: AxKit Users Mailing List <[EMAIL PROTECTED]> Subject: [OT] AxKit: We're Back! Well, after around 12 or 13 weeks outage, axk

RE: xml parsing under mod_perl segfaults

2001-11-12 Thread Matt Sergeant
> -Original Message- > From: Artem Litvinovich [mailto:[EMAIL PROTECTED]] > > Please reply if you are aware of a fix for this problem or a > workaround for > parsing XML under mod_perl. (a fix that does not require > apache recompilation > would be ideal) 1) Use XML::LibXML 2) Use XM

xml parsing under mod_perl segfaults

2001-11-12 Thread Artem Litvinovich
Hello mod_perl gurus, I am trying to do some xml parsing under mod_perl. My script basically looks like this: #!/usr/bin/perl -w use strict; use CGI qw(:standard); use XML::Parser; use XML::SimpleObject; my $file="test.xml"; my $parser = XML::Parser->new(ErrorContext => 2, Style => "Tree"); my

Re: Apache::Sandwich, etc

2001-11-12 Thread Mark Maunder
Jie Gao wrote: > Hi All, > > I am wondering if it is possible to add a footer to dynamic pages, > server-wide, like the subject module does to static pages. > > One apparent way to me is to add another content handler, but > I am not sure how that'll work. > > Any suggestion is appreciated. > > J