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:

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: lib/Apa

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

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 problem

Re: XMas printing benchmark

2000-12-29 Thread Perrin Harkins
On Fri, 29 Dec 2000, Alexander Farber (EED) wrote: > Why? With <

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

2000-12-29 Thread Andrew Ho
Hello, DC>(my $text =<<'foo') =~ s/^\s+://mg; DC>:Hello, World! DC>: http://foo.org/">I am an indented link. DC>: So am http://bar.org/">I. DC>foo DC>print $text; This, and other methods (without the beginning colon, for example) are discussed in rec

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 > > > > Wha

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: XMas printing benchmark

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

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

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: 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: > >

Re: XMas printing benchmark

2000-12-29 Thread Alexander Farber (EED)
Ron Beck wrote: > > Since when??? > > I've always done... > print<<"end_o_doc"; > ... > Problems with this??? > Ron I mean indenting code, not data. > "Alexander Farber (EED)" wrote: > > Why? With < > > > my @text = ( > > "\n", > > "\n", > > " \n", > > "\n", > > "

Re: XMas printing benchmark

2000-12-29 Thread Ron Beck
Since when??? I've always done... print<<"end_o_doc"; Individual Requesting the Service: (Person filling out this form) Requestor's Name Requestor's Employee # Requestor's Phone Requestor's E-mail Address

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 <\n", "\n", " \n", "\n", " Test page\n",

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 (OUTFILE,">$ENV{DOCUMENT_ROO

$:: 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, Mod_perl

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 som

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