ActivePerl 617 and GD.ppd

2000-09-13 Thread Foo, Ji Haw
I tried to install gd (http://www.activestate.com/packages) on build 617, but it keeps telling me: Error installing package 'GD.ppd': Could not locate a PPM binary of 'GD.ppd' for this platform. This same package works well for build 522 (which is why I am still using build 522). I would like to

Re: ActivePerl mod_perl ppd available

2000-09-13 Thread Gerald Richter
> This is great news. I suppose ActivePerl's mod_perl ppd is compatible with > its build 522? > It's tested with build 617, but we are happy about your feedback, if it works also with build 522 Gerald - Gerald Richterecos electro

RE: ActivePerl mod_perl ppd available

2000-09-13 Thread Foo, Ji Haw
This is great news. I suppose ActivePerl's mod_perl ppd is compatible with its build 522? regards, Ji-Haw, Foo Network Engineer (AP) -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 11:53 AM To: [EMAIL PROTECTED] Subject: ActivePerl mod

ActivePerl mod_perl ppd available

2000-09-13 Thread Randy Kobes
Hi, A ppd for mod_perl, suitable for use with ActivePerls based on Perl-5.6.0, is now available. Installation is as ppm install http://theoryx5.uwinnipeg.ca/ppmpackages/mod_perl.ppd or in ftp://theoryx5.uwinnipeg.ca/pub/ppmpackages/. A post-install script will subsequently be run which will

Logging real HTTP status

2000-09-13 Thread brian d foy
let's suppose that i want to change the HTTP status to be something other than i'm going to return from the handler(). is there a way to get the logging phase to log the status that the user-agent got rather than the return value of the handler()? here's my small script which illustrates what i

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread Joshua Chamas
"Victor Michael D. Blancas" wrote: > > > This is the output of my httpd -l command .. how can I tell if Apache::ASP > > is available? > > you can't from http -l. Apache::ASP is not an apache module but a perl > module. try 'perldoc Apache::ASP' if you see the documentation then > Apache::ASP wa

Re: Does anyone know of a Hello World program for mod_perl andApache::ASP

2000-09-13 Thread Victor Michael D. Blancas
On Wed, 13 Sep 2000, Jason wrote: > I need a simple script that will test to see if these are working on my > server. > > > Visit the Apache::ASP homepage, there are a lot of examples there including the httpd.conf modification you may need.

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread Victor Michael D. Blancas
> This is the output of my httpd -l command .. how can I tell if Apache::ASP > is available? you can't from http -l. Apache::ASP is not an apache module but a perl module. try 'perldoc Apache::ASP' if you see the documentation then Apache::ASP was properly installed. another thing, you will not

Re: Multiple Connections on Apache::DBI?

2000-09-13 Thread Jamie Krasnoo
Apache::DBI overrides DBI in the creation of a connection to the database in order to cache the connection. So the connections you created below are seen as the same by Apache::DBI and when you change one you change the other since the connection is comming from the same persistent pool. Try spec

RE: Authentication and Frontpage webs

2000-09-13 Thread Jerrad Pierce
My advice, thrash FrontPage and use mod_dav (http://wevbdav.org) FrontPage2000 can interact with it just fine.. And users who installed WebFolders with IE 5 can use it more or less as a network mounted share. >-Original Message- >From: Rafael Caceres [mailto:[EMAIL PROTECTED]] >Sent: Wedn

Authentication and Frontpage webs

2000-09-13 Thread Rafael Caceres
Dear Friends: I'm running the following setup: Apache/1.3.12 , with FrontPage/4.0.4.3, mod_perl/1.23, mod_ssl/2.6.3 with OpenSSL/0.9.5a on an Alpha 4100 box for our Intranet. One of the frontpage webs departments about to 'go live' has indicated that there is a rather intrincate set of users/

Apache::PerlRun::Flush

2000-09-13 Thread Andrew Chen
Hello all, There was some discussion about the Apache::PerlRun::Flush handler before, but here's a quick refresher: the handler was written in order to be able to run dirty code on PerlRun with PerlRunOnce Off by going through and cleaning up the memory space between each request. It's been worki

Re: Does anyone know of a Hello World program for mod_perl and Apache::ASP

2000-09-13 Thread Joshua Chamas
Jason wrote: > > I need a simple script that will test to see if these are working on my > server. You need to know how to work with Apache for setting up general permissions. The .htaccess file in the Apache::ASP ./site/eg folder will give you some clues. So will: http://www.apache-asp.org/i

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread Joshua Chamas
"G.W. Haywood" wrote: > > Hi Jason, > > On Wed, 13 Sep 2000, Jason wrote: > > and fetch the page with a browser. > > If you put > > PerlSetVar debug 2 > > in your httpd.conf then you'll get heaps of irritating (sorry Josh:) > output from ASP if it's doing anything. > Debug -2 is when its i

does notes() work with custom_response()?

2000-09-13 Thread brian d foy
=head should notes() be available to a handler installed with custom_response()? notice the code below: 0) handler() decides which function will handle the response and sets a note. 1) in test(), if part of the uri contains /error/, then another

Re: Multiple Connections on Apache::DBI?

2000-09-13 Thread Chris Winters
* Mark D Wolinski ([EMAIL PROTECTED]) [000913 17:18]: > Hi all, > > I'm using DBI to connect to a mySQL DB. I want to make two connections at > the same time, as seen here: > > $DBI{database} = "DBI:mysql:db_a"; > $DBI{hostname} = A hostname; > $DBI{username} = A Username; > $DBI{password} = A

Multiple Connections on Apache::DBI?

2000-09-13 Thread Mark D Wolinski
Hi all, I'm using DBI to connect to a mySQL DB. I want to make two connections at the same time, as seen here: $DBI{database} = "DBI:mysql:db_a"; $DBI{hostname} = A hostname; $DBI{username} = A Username; $DBI{password} = A Password; $DBI{db} = join (":",$DBI{database},$DBI{hostname}); $db_driv

RE: Configuring Apache::DBI

2000-09-13 Thread Geoffrey Young
> -Original Message- > From: Roee Rubin [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 13, 2000 1:04 PM > To: [EMAIL PROTECTED] > Subject: Configuring Apache::DBI > > > Hello, > > I am having some trouble configuring Apache::DBI on > linux. > > The package has two files, DBI.p

RE: handler not quite doing what I expect

2000-09-13 Thread Matt Sergeant
On Wed, 13 Sep 2000, Geoffrey Young wrote: > > My other question is about Apache::Request. Why does this: > > > > my $apr = Apache::Request->new($r); > > my @params = $apr->param; > > > > poon the parameters listing when it runs? If I have a page > > that contains

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jason
I put that into an HTML file and looked at it in a browser and received this output: --begin hello.asp --end hello.asp is there something else I need to do? Thanks for all your help guys! -Original Message- From: Jerrad Pierce [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 13,

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jerrad Pierce
Yes. --begin hello.asp <%= "Hello World" %> --end hello.asp >-Original Message- >From: Jason [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, September 13, 2000 3:04 PM >To: 'Jerrad Pierce' >Cc: [EMAIL PROTECTED] >Subject: RE: How can I tell if Apache::ASP is available? > > >Thanks .. I type

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jason
Thanks .. I typed this: [root admin]# perl use Apache::ASP; print "Hello World\n"; then pressed Ctrl-D, and it output: Hello World [root admin]# So, I assuming that means it's working. When I type lwp-request command, I get this: Connection: close Date: Wed, 13 Sep 2000 19:11:26 GMT Accept-Ra

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread G.W. Haywood
Hi Jason, On Wed, 13 Sep 2000, Jason wrote: > This is the output of my httpd -l command .. ASP is a perl module, it's not in the output of httpd -l. > how can I tell if Apache::ASP is available? Do you mean if it's in your filesystem somewhere, or if it's been loaded by mod_perl, or if you'v

Bad free() ignored?

2000-09-13 Thread Eamon Daly
We've been using mod_perl/DBI for our entire website for just under a year now (over 1.5M pages a day-- I owe the mod_perl folks a hell of a lot of beer), and have suddenly started seeing a small number of "Bad free() ignored" lines appear in the error logs. My error trapping gives line numbers, b

RE: handler not quite doing what I expect

2000-09-13 Thread Geoffrey Young
> -Original Message- > From: Todd Finney [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 13, 2000 3:09 AM > To: [EMAIL PROTECTED] > Subject: Re: handler not quite doing what I expect > > [snip] > > My other question is about Apache::Request. Why does this: > >

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jerrad Pierce
prompt# perl use Apache::ASP; print "Hello World\n"; ^D If you get no errors it's there >-Original Message- >From: Jason [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, September 13, 2000 2:28 PM >To: [EMAIL PROTECTED] >Subject: How can I tell if Apache::ASP is available? > > >This is the o

Re: Help! About DBI in mod_perl!

2000-09-13 Thread Tom Mornini
This * should * work and should not cause a core dump. That said, you should take a look at the O'Rielly DBI book. There are a ton of error conditions that you're not checking here. Best to turn on RaiseError and then wrap all subsequent code in an eval block. Your code will be cleaner and easi

Configuring Apache::DBI

2000-09-13 Thread Roee Rubin
Hello, I am having some trouble configuring Apache::DBI on linux. The package has two files, DBI.pm and AuthDBI.pm The current tree structure I have is the following .. modules .. .. Apache .. .. .. Constants I have a different DBI.pm which resides under modules (which I am assuming is the re

Does anyone know of a Hello World program for mod_perl and Apache::ASP

2000-09-13 Thread Jason
I need a simple script that will test to see if these are working on my server.

How can I tell if Apache::ASP is available?

2000-09-13 Thread Jason
This is the output of my httpd -l command .. how can I tell if Apache::ASP is available? [admin admin]$ httpd -l bash: httpd: command not found [admin admin]$ /usr/sbin/httpd -l Compiled-in modules: http_core.c mod_so.c mod_perl.c suexec: disabled; invalid wrapper /usr/sbin/suexec [admin a

Re: Benchmarking utlis?

2000-09-13 Thread Stas Bekman
On Tue, 12 Sep 2000, Pramod Sokke wrote: > Hi all, > > Are there any benchmarking utilities/guidelines that I can use to prove the >performance boost with mod_perl? We just moved all our old cgis to work under >mod_perl. > I'm using Solaris 2.7/Apache 1.3.12/mod_perl 1.24. > Thanks, > Pramod >

Re: handler not quite doing what I expect

2000-09-13 Thread Todd Finney
Ok, I think I figured it out. I neglected to mention it before, but the error I was getting was (8)Exec format error: [path to the content filename] The problem was here: ( trimmed down, with the param call moved up into the main handler. I have a question about that, too) sub print_compo