Apache::Session::Postgres error

2001-01-16 Thread Todd Finney
I'm using Apache::Session::Postgres to track sessions via cookies. When I access a page, the cookie is correctly sent by the server, and accepted by the client. However, on the second request, I'm getting a 'Object does not exist in data store' error. It looks like the session is not being

Following fresh compile from new src...

2001-01-16 Thread andrewl
Hello mod_perl gurus, I have the following: RHL 7.0 (linux 2.2.16) Apache 1.3.14 mod_perl.1.24_01 Perl 5.6.0 and an upgraded glibc to version 2.96-69 I followed the "installation in 10 Lines" instructions, with one amendment: % cd /usr/src % lwp-download

Re: Following fresh compile from new src...

2001-01-16 Thread darren chamberlain
andrewl ([EMAIL PROTECTED]) said something to this effect on 01/16/2001: Invalid command 'Order' on line 333 in httpd.conf. This will appear if you disabled mod_access via something like '--disable-module=access' in your APACI_ARGS Apache configure commands. (darren) -- In the fight between

Upgrading mod_perl on production machine (again)

2001-01-16 Thread Bill Moseley
This is a revisit of a question last September where I asked about upgrading mod_perl and Perl on a busy machine. IIRC, Greg, Stas, and Perrin offered suggestions such as installing from RPMs or tarballs, and using symlinks. The RPM/tarball option worries me a bit, since if I do forget a file,

Help! --- mod_perl + DBI:mysql:connect - Error.

2001-01-16 Thread yen-ying . chen-dreger
Hi, from a mod_perl module using DBI and Apache::Registry as PerlModule i can not connect to a mysql database. The Browser gets an error message that the document hat no data while in the logfile of apache stands "child pid 31955 exit signal Segmentation fault (11)". I am sure that the

Re: Upgrading mod_perl on production machine (again)

2001-01-16 Thread Greg Cope
Bill Moseley wrote: This is a revisit of a question last September where I asked about upgrading mod_perl and Perl on a busy machine. IIRC, Greg, Stas, and Perrin offered suggestions such as installing from RPMs or tarballs, and using symlinks. The RPM/tarball option worries me a bit,

Re: Upgrading mod_perl on production machine (again)

2001-01-16 Thread Steve Reppucci
Not that I have an answer to this complete problem, but I have had similar situation, so I'll also be interested in the solutions you uncover. I've always handled the support of multiple perl versions by installing new versions of perl using a prefix like /usr/local/perl/5.6.0, etc., (I also

Re: Upgrading mod_perl on production machine (again)

2001-01-16 Thread David McCabe
From: Steve Reppucci [EMAIL PROTECTED] Date: Tue, 16 Jan 2001 11:02:44 -0500 (EST) Subject: Re: Upgrading mod_perl on production machine (again) I've always handled the support of multiple perl versions by installing new versions of perl using a prefix like /usr/local/perl/5.6.0, etc., (I

With high request rate, server stops responding with load zero

2001-01-16 Thread Honza Pazdziora
Hello, I've looked through the docs and archives but either I cannot come with proper search keywords, or ... please redirect me if this was discussed recently. We have four Linux PCs with Apache 1.3.12, mod_perl 1.24 with 5.05_03 behind LVS, they run scripts under PerlRun with PerlRunOnce set

Re: Help! --- mod_perl + DBI:mysql:connect - Error.

2001-01-16 Thread G.W. Haywood
Hi there, On Tue, 16 Jan 2001 [EMAIL PROTECTED] wrote: from a mod_perl module using DBI and Apache::Registry as PerlModule i can not connect to a mysql database. Have you looked at the mod_perl Guide? http://perl.apache.org/guide The Browser gets an error message that the document hat no

Re: With high request rate, server stops responding with load zero

2001-01-16 Thread G.W. Haywood
Hi there, On Tue, 16 Jan 2001, Honza Pazdziora wrote: I've looked through the docs and archives but either I cannot come with proper search keywords, or ... please redirect me if this was discussed recently. Maybe there might be something relevant in the recent thread about nasty robots?

Re: Following fresh compile from new src...

2001-01-16 Thread G.W. Haywood
Hi again Andrew, On Tue, 16 Jan 2001, andrewl wrote: Invalid command 'Order' on line 333 in httpd.conf. What have you done to your httpd.conf? The order directive should be OK for even a plain Apache! Is the opening Directory ... tag missing? Wanna send me the file? (Privately) 73, Ged.

Re: Following fresh compile from new src...

2001-01-16 Thread G.W. Haywood
Hi again, On Tue, 16 Jan 2001, I wrote: Is the opening Directory tag missing? Well, no, it had just scrolled off the screen. Oops. 73, Ged.

Re: HTTP_REFERRER and Mod_perl

2001-01-16 Thread Keith G. Murphy
"Khachaturov, Vassilii" wrote: Please keep in mind that what you describe is a behaviour of one particular user agent. Some UAs just never send referer for anonymity. (Sometimes proxy will do that for them). Some do it for links from a web page, but not from a file:// URL. Some don't care

Re: Upgrading mod_perl on production machine (again)

2001-01-16 Thread Perrin Harkins
The RPM/tarball option worries me a bit, since if I do forget a file, then I'll be down for a while, plus I don't have another machine of the same type where I can create the tarball. There's no substitute for testing. If it's really important to have a very short down time, you need a

Re: With high request rate, server stops responding with load zero

2001-01-16 Thread Honza Pazdziora
On Tue, Jan 16, 2001 at 05:04:42PM +, G.W. Haywood wrote: Maybe there might be something relevant in the recent thread about nasty robots? Dunno what it was called. Read it all, but I'm affraid it doesn't apply to my situation. All the requests that we get bombed with are legitimate

Finding out what has been enabled on a mod perl server

2001-01-16 Thread Kevin Beckford
Hello all, I need to find out what has been enabled on my production server. I want to use method handlers, but I am unsure if that has been compiled in. How would I do this? I don't have the access to install mod-status - so the easy way is not for me...

Re: Apache::Session::Postgres error

2001-01-16 Thread Edmund Mergl
Todd Finney wrote: I'm using Apache::Session::Postgres to track sessions via cookies. When I access a page, the cookie is correctly sent by the server, and accepted by the client. However, on the second request, I'm getting a 'Object does not exist in data store' error. It looks like

mod_perl and dbi:Oracle

2001-01-16 Thread Aleksandr Vladimirskiy
Hi, I am building a system using apache,mod_perl and oracle. it is in the very early stages. right now all i have is a module that prints out a simple text string to the browser. for the next step i am trying to access an oracle db, but get a message in the error log from the module that

Re: Finding out what has been enabled on a mod perl server

2001-01-16 Thread David McCabe
From: Kevin Beckford [EMAIL PROTECTED] Date: Tue, 16 Jan 2001 13:19:16 -0500 Subject: Finding out what has been enabled on a mod perl server Hello all, I need to find out what has been enabled on my production server. I want to use method handlers, but I am unsure if that has been

Re: Finding out what has been enabled on a mod perl server

2001-01-16 Thread Kevin Beckford
That will tell me if mod_perl.c is has been installed. I know that. What I want to find out is if during the installation, did the installer (Was not me!) set PerlMethodHandlers on and other flags of that kind during the install. How would I do that? Apachedir/bin/httpd -l

Re: Finding out what has been enabled on a mod perl server

2001-01-16 Thread JR Mayberry
Apache::Status will tell you perldoc Apache::Status Kevin Beckford wrote: That will tell me if mod_perl.c is has been installed. I know that. What I want to find out is if during the installation, did the installer (Was not me!) set PerlMethodHandlers on and other flags of that kind

RE: Finding out what has been enabled on a mod perl server

2001-01-16 Thread Geoffrey Young
-Original Message- From: Kevin Beckford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 2:01 PM To: David McCabe Cc: [EMAIL PROTECTED] Subject: Re: Finding out what has been enabled on a mod perl server That will tell me if mod_perl.c is has been installed. I know

Re: Apache::Session::Postgres error

2001-01-16 Thread Todd Finney
At 01:28 PM 1/16/01, Edmund Mergl wrote: Todd Finney wrote: It looks like the session is not being stored in the database, although I can't figure out why. When running postmaster -d 2, I get the following output: This problem has been reported several times. find below the

Re: mod_perl and dbi:Oracle

2001-01-16 Thread Benoit Caron
At 13:32 1/16/2001 -0500, Aleksandr Vladimirskiy wrote: Hi, I am building a system using apache,mod_perl and oracle. it is in the very early stages. right now all i have is a module that prints out a simple text string to the browser. for the next step i am trying to access an oracle db, but get

[OT] All of Perldocs to HTML files

2001-01-16 Thread Martin Langhoff
Hi, I know this is is wy OT. Kick me privately, please. I am looking for a way to dump all of the available perldocs into an organized HTML structure. Activestate people are doing it in their standard distro -- but I couldn't find how. They even get cross-module links ("See Also")

Re: [OT] All of Perldocs to HTML files

2001-01-16 Thread T.J. Mather
have you looked at Pod::Html ? You can use that together with File::Find to convert a directory of pods.

Re: Apache::Session::Postgres error

2001-01-16 Thread Jeffrey W. Baker
On Tue, 16 Jan 2001, Todd Finney wrote: I'm using Apache::Session::Postgres to track sessions via cookies. When I access a page, the cookie is correctly sent by the server, and accepted by the client. However, on the second request, I'm getting a 'Object does not exist in data store'

Re: Apache::Session::Postgres error

2001-01-16 Thread Jeffrey W. Baker
On Tue, 16 Jan 2001, Edmund Mergl wrote: Todd Finney wrote: I'm using Apache::Session::Postgres to track sessions via cookies. When I access a page, the cookie is correctly sent by the server, and accepted by the client. However, on the second request, I'm getting a 'Object does not

using a handler in a module file

2001-01-16 Thread Kevin Beckford
I want to use an apache module in an .htaccess file. What would be the syntax with that? I'm assuming that it will be along the lines of PerlModule Goofy::Nav Files goofy.nav SetHandler perl-script PerlHandler Goofy::Nav /Files but I can't seem to get that to work. Any ideas?

Re: Apache::Session::Postgres error

2001-01-16 Thread Edmund Mergl
Edmund Mergl wrote: Todd Finney wrote: I'm using Apache::Session::Postgres to track sessions via cookies. When I access a page, the cookie is correctly sent by the server, and accepted by the client. However, on the second request, I'm getting a 'Object does not exist in data

Re: Upgrading mod_perl on production machine (again)

2001-01-16 Thread brian moseley
On Tue, 16 Jan 2001, David McCabe wrote: From: Steve Reppucci [EMAIL PROTECTED] I've always handled the support of multiple perl versions by installing new versions of perl using a prefix like /usr/local/perl/5.6.0, etc., (I also place CPAN's build directory under that tree.) That

[OT] ROFLMAO Web Site

2001-01-16 Thread Jimi Thompson
For everyone who's every been presented with one of those stupid "motivational" posters, mugs, etc. when you would have rather been given what they spent for the piece of crap.. http://www.despair.com/

Apache::ASP

2001-01-16 Thread Francis Mendoza
Hello Help, I was wondering if you can help me answer my problem. I'm using Linux 2.2.14, Apache-1.3.11 and mod_perl-1.21 I wan't to install ASP for my APACHE-1.3.11. i already installed the mod_perl-1.21. I downloaded the apache-asp-2.07.tar.gz when I used the $perl Makefile.PL it said that

Re: Apache::ASP

2001-01-16 Thread G.W. Haywood
Hi there, On Tue, 16 Jan 2001, Francis Mendoza wrote: Does this mean that I have Apache::ASP installed in my Linux already? Looks that way. If I do have Apache::ASP already installed in my Linux.. What is my next step? You need to do some reading. The documentation is in there with

Re: Redirecting a multipart/form-data POST request

2001-01-16 Thread Darren Stuart Embry
On 2001-01-15, Ask Bjoern Hansen [EMAIL PROTECTED] wrote: When I do neither, i.e., leave the POST request as is and use the standard redirect mechanism, the browser hangs and the server actually does not send the redirect until I hit the Stop button (I'm using ngrep to determine this).

Re: FileMan - Not enough arguments for mkdir

2001-01-16 Thread George Sanderson
At 03:12 PM 1/16/2001 +0200, you wrote: Some linuxes required to have correct permission set in mkdir (it fails on mkdir $dir; needs to be mkdir $dir,0775;), so make test fails... (FileMan.pm line 771 and several times below..) I fixed all the mkdirs with "mkdir $dir,0755". I think 0755 is all

Re: With high request rate, server stops responding with load zero

2001-01-16 Thread Perrin Harkins
On Tue, 16 Jan 2001, Honza Pazdziora wrote: The machines are alright memorywise, they seem to be a bit slow on CPU, however what bothers me is the deadlock situation to which they get. No more slow crunching, they just stop accepting connections. I've only seen that happen when something was

Re: mod_perl and dbi:Oracle

2001-01-16 Thread Tom Mornini
On Tue, 16 Jan 2001, Benoit Caron wrote: I am building a system using apache,mod_perl and oracle. it is in the very early stages. right now all i have is a module that prints out a simple text string to the browser. for the next step i am trying to access an oracle db, but get a message in

Re: Redirecting a multipart/form-data POST request

2001-01-16 Thread Gerd Kortemeyer
I am writing a program that needs to process form data, (here's the kicker) which is sometimes multipart/form-data, then redirect a user to a GET request (which doesn't need to process the form data). I would like to use the standard mechanism for issuing a redirect, for other