RE: Where can I find....

2000-12-29 Thread Geoffrey Young
-Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28, 2000 6:06 PM To: [EMAIL PROTECTED] Subject: Re: Where can I find Thanks, I have the complete list. It is given in man Apache::Constants What I'm trying to do is figure out how

Re: Where can I find....

2000-12-29 Thread Glorfindel
Look at the RFC of HTTP Michael wrote: Where can I find documentation on the how to use all the values that appear in Apache::Constants The obviously do something, but what??? I figured out what OK, DECLINED do by reading the source, but what about all the rest. Are they described

$:: problem in Converting CGI to Apache::Registry

2000-12-29 Thread Rod Butcher
I've installed a webring management system, works ok under CGI. It uses $::vars everywhere. Under mod_perl / Apache::Registry these variables are not populated, I understand because mod_perl is the Main package. Any suggestions for a quick fix ? (Win 32, ActiveState 623 Perl, Apache 3.14,

Re: File Upload problems

2000-12-29 Thread Alexander Farber (EED)
cbell wrote: Everytime I try to upload a file, the browser will stall a couple of times, and the file ends up on the server as a zero byte file. How about: # Upload Procedure my $buffer; my $inputfile = upload ('uploaded_file'); open

Re: XMas printing benchmark

2000-12-29 Thread Alexander Farber (EED)
Perrin Harkins wrote: I know it's not the point, but I'd consider it poor style if I saw someone using anything other than a HERE doc for the job you're testing. Why? With HERE you can't indent your code: my @text = ( "!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML//EN\"\n", "HTML\n",

Re: XMas printing benchmark

2000-12-29 Thread Ron Beck
Since when??? I've always done... print"end_o_doc"; form action="../scripts/pgr_req03.cgi" method="post" table border="0" cellpadding="0" cellspacing="0" width="100%" tr td colspan="4" div align="left" font face="Arial" size="4" color="#80" strongIndividual Requesting the

Re: XMas printing benchmark

2000-12-29 Thread Alexander Farber (EED)
Ron Beck wrote: Since when??? I've always done... print"end_o_doc"; form action="../scripts/pgr_req03.cgi" method="post" ... Problems with this??? Ron I mean indenting code, not data. "Alexander Farber (EED)" wrote: Why? With HERE you can't indent your code: my @text = (

Re: File Upload problems

2000-12-29 Thread cbell
I think that was it!!! I wasn't closing the file after uploading it, thanks alot "Alexander Farber (EED)" wrote: cbell wrote: Everytime I try to upload a file, the browser will stall a couple of times, and the file ends up on the server as a zero byte file. How about:

problems with mod_perl

2000-12-29 Thread Yung Kwong Wing
Hi, My name is Peter. I am trying to configure my mod_perl for my Linux 6.2. I have encountered the problems with carrying out: perl Makefile.PL APACHE_SRC=../apache_1.3.6/src \ DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 Also, I am have problems with the "make" portion of the configuration. I have

Re: problems with mod_perl

2000-12-29 Thread Daniel Grunblatt
Did you tried using apache_1.3.14? -- Daniel Alejandro Grunblatt COO - Portal InfoNegocio. Tel: (+54-11) 4332-3332 Cel: (+54-11) 41461971. Dir: Tucuman 1 piso 5. CP: C1049AAA. On Sat, 30 Dec 2000, Yung Kwong Wing wrote: Hi, My

Re: XMas printing benchmark

2000-12-29 Thread darren chamberlain
How about this: ### Code: (my $text ='foo') =~ s/^\s+://mg; :h1Hello, World!/h1 : pa href="http://foo.org/"I/a am an indented link./p : pSo am a href="http://bar.org/"I/a./p foo print $text; ### Output: h1Hello, World!/h1 pa

Re: problems with mod_perl

2000-12-29 Thread darren chamberlain
Yung Kwong Wing ([EMAIL PROTECTED]) said something to this effect on 12/29/2000: I have encountered the problems with carrying out: Here is your answer: configure:Error: No such rule named 'EXPAT' Checking for LWP::UserAgent..failed Checking for HTML::HeadParserfailed The

RE: Where can I find....

2000-12-29 Thread Michael
-Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28, 2000 6:06 PM To: [EMAIL PROTECTED] Subject: Re: Where can I find Thanks, I have the complete list. It is given in man Apache::Constants What I'm trying to do is

[OT] Here document indenting (Was: XMas printing benchmark)

2000-12-29 Thread Andrew Ho
Hello, DC(my $text ='foo') =~ s/^\s+://mg; DC:h1Hello, World!/h1 DC: pa href="http://foo.org/"I/a am an indented link./p DC: pSo am a href="http://bar.org/"I/a./p DCfoo DCprint $text; This, and other methods (without the beginning colon, for

Re: XMas printing benchmark

2000-12-29 Thread Perrin Harkins
On Fri, 29 Dec 2000, Alexander Farber (EED) wrote: Why? With HERE you can't indent your code: Left-aligning the final line never really bothered me, since it doesn't bother emacs. To each their own I guess. I find the HERE doc to be one of the nicest Perl idioms. - Perrin

Re: problems with mod_perl

2000-12-29 Thread Yung Kwong Wing
Thanks for your reply. So, how do I uninstall the old apache and install the new one or how do I uninstall this mod_perl? Peter On Fri, 29 Dec 2000, darren chamberlain wrote: Yung Kwong Wing ([EMAIL PROTECTED]) said something to this effect on 12/29/2000: I have encountered the problems

Re: problems with mod_perl

2000-12-29 Thread Yung Kwong Wing
OH I forgot to ask. How do I install the libww and the required HTML modules? Exactly what modules do they need? On Fri, 29 Dec 2000, darren chamberlain wrote: Yung Kwong Wing ([EMAIL PROTECTED]) said something to this effect on 12/29/2000: I have encountered the problems with carrying

directive handlers + LoadModule foo_module

2000-12-29 Thread Doug MacEachern
this was reported a few times, with php as the suspect, but it happens with any LoadModule config. problem was that the xs module structure was only added to the Apache module list once at startup. it needs to be removed/added each time apache is restarted, patch below does that. Index:

Re: segmentation fault when using custom config module

2000-12-29 Thread Doug MacEachern
On Wed, 29 Nov 2000, Dave Rolsky wrote: I created a module that contains custom configs with the following code: i cannot reproduce this with or without the patch just posted. i did have to change this line for it to run: $AH = HTML::Mason::ApacheHandler( interp = $interp ); to:

cvs commit: modperl/src/modules/perl Apache.xs

2000-12-29 Thread dougm
dougm 00/12/29 09:10:09 Modified:.Changes src/modules/perl Apache.xs Log: allow $r-finfo to be modified Revision ChangesPath 1.565 +2 -0 modperl/Changes Index: Changes

cvs commit: modperl/src/modules/perl mod_perl.h perl_config.c

2000-12-29 Thread dougm
dougm 00/12/29 21:09:01 Modified:.Changes lib/Apache ExtUtils.pm src/modules/perl mod_perl.h perl_config.c Log: fix directive handlers bug triggered by LoadModule foo_module Revision ChangesPath 1.566 +2 -0