Re: Two Apache::Request issues

2000-06-16 Thread Jim Winstead
On Jun 15, Tom Mornini wrote: I have recently noticed two issues with Apache::Request and thought I'd run them by the list before I began hacking and diffing for Doug. 1) $ar-param without parameters has different behaviour than CGI.pm Apache::Request returns a reference, CGI.pm returns

moving GIF's constantly reloading

2000-06-16 Thread Paul
Moving GIF files on some of our pages seem to *keep* reloading the whole time I stay on the page. My browser is set to only compare a document in its cache to the network version once per session. What gives? I don't see anything in the configs that looks very closely related The one place

Re: Handholding, please (whimper)

2000-06-16 Thread B. Duffee
Great, thanks Vivek. I'm onto a new problem (at least it's new;) I try the exact description of how to set up the Hello World (but with a pre-existing httpd.conf and odd directory structure. not my fault) and the response I get from the browser for http://blah.blah.blah/hello/world is

[dramatic] Voting for Appaloosa awards now open (fwd)

2000-06-16 Thread Stas Bekman
Well you know who to vote for in the "Technical Contribution" category, right? Please spread the word on the other related list if you know such. And the nominees are... -- Forwarded message -- Date: Fri, 16 Jun 2000 16:39:29 +0100 (BST) From: Mark J Cox [EMAIL PROTECTED]

Re: [dramatic] Voting for Appaloosa awards now open (fwd)

2000-06-16 Thread Matt Sergeant
On Fri, 16 Jun 2000, Stas Bekman wrote: Well you know who to vote for in the "Technical Contribution" category, right? Please spread the word on the other related list if you know such. And the nominees are... Damnit I'm really torn by the excellent work the XML team has done, when you

BSDi 2.1 BUG

2000-06-16 Thread Jim D.
This may relate to the BSDI note in the INSTALL file, but I'm getting a fcntl.pm problem, or at least it appears this way. Everything else seems to work, but when I add "use Fcntl;" I get this... [Tue Jun 13 18:31:40 2000] [error] Can't load

Apache::DBI strategy/philosophy

2000-06-16 Thread Tim Gardner
I have been using DBI without Apache::DBI and have been simply storing db connections in a global variable as a sort of poor man's persistent connection when running under Apache::Registry. Now I want to do things "right" and am trying to understand Apache::DBI. Before looking at the module

Compiling mod_perl on HP-UX 10.20

2000-06-16 Thread Guy Saldanha
Hi! Has anyone had problems compiling mod_perl 1.24 on HP-UX 10.20? No matter what parameters are passed to perl Makefile.PL, the make is stopped: ld -b -s -a shared -o libperl.so mod_perl.lo perlxsi.lo perl_config.lo perl_util.lo perlio.lo mod_perl_opmask.lo Apache.lo Constants.lo

Re: Apache::DBI strategy/philosophy

2000-06-16 Thread Stef telford
Tim wrote: Now I want to do things "right" and am trying to understand Apache::DBI. Before looking at the module I imagined that it would work by providing a library of persistent connections. You would check a connnection out of the library, use it, and then put it back when you are

Re: BSDi 2.1 BUG

2000-06-16 Thread Vivek Khera
"JD" == Jim D [EMAIL PROTECTED] writes: JD This may relate to the BSDI note in the INSTALL file, but I'm getting a JD fcntl.pm problem, or at least it appears this way. Everything else seems to JD work, but when I add "use Fcntl;" I get this... JD [Tue Jun 13 18:31:40 2000] [error] Can't load

Slightly OT - Content-length

2000-06-16 Thread Jim Serio
Since mod_perl and CGI scripts are dynamic, it seems that Content-length has to be handled by the script. I'm curious how some of you are handling this. It would seem to me that you need to know all of your output before printing the first line. Jim

Re: Slightly OT - Content-length

2000-06-16 Thread Vivek Khera
"JS" == Jim Serio [EMAIL PROTECTED] writes: JS Since mod_perl and CGI scripts are dynamic, it seems that JS Content-length has to be handled by the script. I'm curious JS how some of you are handling this. It would seem to me that How I handle it is to ignore it. Nothing really breaks without

Re: Slightly OT - Content-length

2000-06-16 Thread Vivek Khera
"JS" == Jim Serio [EMAIL PROTECTED] writes: JS I too ignore this header but a system I'm integrating JS with that uses JSP to fetch data from an URL on my system JS aparently need to rely on the content-length. As for But content-length is NOT a required header for HTTP protocol, is it? If the

Re: Slightly OT - Content-length

2000-06-16 Thread Jim Serio
But content-length is NOT a required header for HTTP protocol, is it? If the program is relying on it, then it is broken and should be fixed. The other alternative is to generate your entire page as a string, get the string's length() and print that as your content-length header. Quite

Apache::DBI broken?

2000-06-16 Thread Ian Mahuron
I've been searching through the mailing list and have seen several people with the same problem I'm experiencing. Yet I've seen no solid answers to this problem... so maybe I'll try again. System is: FreeBSD 4.0 Apache 1.3.12 perl 5.005_03 mod_perl 1.24 DBI 1.14 Apache::DBI 0.87 # Apache::DBI

Re: Apache::DBI broken?

2000-06-16 Thread Casey Bristow
I had similar problems. In startup.pl, where you are calling 'use Apache::DBI;', do you call 'use DBI;' following the call to Apache::DBI ? When I included that in startup.pl.. it started behaving better.. my $0.02 -Casey On Fri, 16 Jun 2000, Ian Mahuron wrote: I've been searching

Re: Apache::DBI broken?

2000-06-16 Thread Edmund Mergl
Ian Mahuron wrote: I've been searching through the mailing list and have seen several people with the same problem I'm experiencing. Yet I've seen no solid answers to this problem... so maybe I'll try again. System is: FreeBSD 4.0 Apache 1.3.12 perl 5.005_03 mod_perl 1.24 DBI 1.14

RE: Apache::DBI broken?

2000-06-16 Thread indrek siitan
Hi, System is: FreeBSD 4.0 Apache 1.3.12 perl 5.005_03 mod_perl 1.24 DBI 1.14 Apache::DBI 0.87 are you sure you don't have PHP4 in this mix? if you have compiled PHP4 with its internal support for MySQL, it will conflict with mod_perl. Rgds, Tfr --== [EMAIL PROTECTED] == MySQL

RE: [OT] [JOB] mod_perl and Apache developers wanted

2000-06-16 Thread Perrin Harkins
On Thu, 15 Jun 2000, Paul Singh wrote: While that may be true (as with many publications), I hope you're not denying the facts of this case The basic facts are correct: eToys received complaints from parents about the content their children found on the etoy.com site and, after failing to

RE: Apache::DBI broken?

2000-06-16 Thread Vivek Khera
"IM" == Ian Mahuron [EMAIL PROTECTED] writes: IM php4 *is* in the mix! I installed it just so we could use phpMyAdmin (neat IM MySQL web client). Can you ellaborate on this (URL, docs, etc)?? Is there IM a patch for php4 or should I jump back to php3? by default, when you build php4 with

RE: Apache::DBI broken?

2000-06-16 Thread Ian Mahuron
Everything except MySQL was built up from sources (no ports). All modules are linked static. As per your advice, I nixed the load of Apache::DBI... and it still segfaults.. so the problem obviously lies w/ DBI or the DBD for mysql. Having read more of the mod_perl list archives, it seems that

modperl1.24 with apache1.3.12

2000-06-16 Thread Sam Park
Do you know how I can install mod-perl.1.24 with the apache1.3.12? I following the instruction but it's giving me this error? If I run the make... then I get this error.. cd ../apache_1.3.12/src make CC="cc";) === os/unix cc -c -I../../os/unix -I../../include -DSOLARIS2=260 -DMOD_PERL

RE: non-DSO mod_perl, Embperl, and AIX not working

2000-06-16 Thread Greg Estep
After making a few tweaks to the test.pl script and passing the 'h' command-line parameter (only do mod_perl tests) I was able to run all the tests (only under mod_perl) successfully. I then was able to run some successful tests against some .epl's that I had previously written using a

Re: moving GIF's constantly reloading

2000-06-16 Thread Leslie Mikesell
According to Paul: Moving GIF files on some of our pages seem to *keep* reloading the whole time I stay on the page. My browser is set to only compare a document in its cache to the network version once per session. What gives? I don't see anything in the configs that looks very closely

RE: Apache::DBI broken?

2000-06-16 Thread Ian Mahuron
It was PHP4. A rebuild fixed it. Thanks guys! -Original Message- From: Ian Mahuron [mailto:[EMAIL PROTECTED]] Sent: Friday, June 16, 2000 01:50 PM To: Edmund Mergl Cc: Mailing List, mod_perl Subject: RE: Apache::DBI broken? Everything except MySQL was built up from sources

Re: modperl1.24 with apache1.3.12

2000-06-16 Thread drfrog
Sam Park wrote: Do you know how I can install mod-perl.1.24 with the apache1.3.12? I following the instruction but it's giving me this error? If I run the make... then I get this error.. cd ../apache_1.3.12/src make CC="cc";) === os/unix cc -c -I../../os/unix -I../../include

Re: Apache::ASP and Apache request object

2000-06-16 Thread Joshua Chamas
Dmitry Beransky wrote: Hi, In order to get an instance of Apache::Session, I need to get to the current session id which is stored in a request header, which means I need to get a reference to the current apache request object. I've browsed through Apache::ASP code and docs and realized

Re: IPC::Open2 v5.6.0 failures.

2000-06-16 Thread Michael J Schout
On Fri, 16 Jun 2000 [EMAIL PROTECTED] wrote: Hi, my open2 script failes to work under mod_perl with perl v5.6.0. Works correctly outside of the 5.6.0-mod_perl environment but works with mod_perl-5.005_03. ... I have the exact same problem using IPC::Open3 under perl 5.6.0/mod_perl 1.24

Apache::Session and pnotes (again)

2000-06-16 Thread JoshNarins
Hello, I'm consistently unable to store my Apache::Session in pnotes and retrieve it in subsequent handlers. Some of you may remember me complaining about this before. Luckily, I've had other things I could be doing. The Session IS retrievable in the same handler, but not in the Mason Handler.

Re: mod_perl setup for w2k?

2000-06-16 Thread Kip Hampton
Well, when tugged the sleeve of a certain Unusually-Sized Rodent at ApacheCon about the future of Apache on Windows I was told that Apache will *not* support NT5 uh, I mean, Windows2000. Ken, is this still true? -kip Tom Roche wrote: The courseware project on which I labor has been running

A patch for Apache::Request

2000-06-16 Thread Tom Mornini
To allow the use of utf-8 encoded form data, as per Jim Winstead [EMAIL PROTECTED] *** apache_request.cFri Jul 2 18:00:17 1999 --- ../../libapreq-0.31-tom/c/apache_request.c Fri Jun 16 16:29:38 2000 *** *** 201,207 if (r-method_number == M_POST) { const

Re: mod_perl setup for w2k?

2000-06-16 Thread Kip Hampton
Randy Terbush wrote: I'd strongly disagree that this is not true. Covalent intends to make a significant commitment to making sure that Apache 2.0 on Win32 is on par with the Unix platform's stability and performance. This is *excellent* news. It's always possible that I misunderstood,

Re: non-DSO mod_perl, Embperl, and AIX not working

2000-06-16 Thread Jens-Uwe Mager
On Fri, Jun 16, 2000 at 04:58:55PM -0400, Greg Estep wrote: After making a few tweaks to the test.pl script and passing the 'h' command-line parameter (only do mod_perl tests) I was able to run all the tests (only under mod_perl) successfully. I then was able to run some successful tests