Visual Basic scripts with Apache::ASP

2000-11-12 Thread Garth Parfitt
Is it at all possible to run asp scripts that have been written in Visual Basic under Apache with mod_perl installed? They run fine on IIS but not on Apache. Please assist. Garth

Re: problems with HTML::Embperl on macos x (darwin)

2000-11-12 Thread Gerald Richter
>PERL_DL_NONLAZY=0 /usr/bin/perl -Iblib/arch -Iblib/lib >-I/System/Library/Perl/darwin -I/System/Library/Perl test.pl > >loading...dyld: /usr/bin/perl Undefined symbols: >_ap_get_client_block >... Mostly this is because the symbols have been striped from the Apache binary aft

Re: Building a ModPerl ISP for you!

2000-11-12 Thread Joshua Chamas
Stas Bekman wrote: > > So first if anybody wants to get into the article and hasn't contacted me > before, let me know. Please post to *me* only if *relevant*. What's > relevant? You happen to provide ISP service with mod_perl and you are > willing to give the contact info details/prices and othe

Re: Passing data structures between Stacked Handlers

2000-11-12 Thread Thomas Klausner
Hi! > If you use $r->pnotes, you can just put a reference to an arbitrary data > structure into it and it will still be there in the next handler. No > need to serialize it with Data::Dumper. Better than using a normal > global because it gets automatically cleaned up after the request. Thanks

problems with HTML::Embperl on macos x (darwin)

2000-11-12 Thread Gustav Kristoffer Ek
I have compiled the latest embperl from cpan (1.3b6) with apache support, but when I try make test I got: PERL_DL_NONLAZY=0 /usr/bin/perl -Iblib/arch -Iblib/lib -I/System/Library/Perl/darwin -I/System/Library/Perl test.pl loading...dyld: /usr/bin/perl Undefined symbols: _ap_

Re: Putting together the TPC mod_perl track

2000-11-12 Thread Nathan Torkington
Stas Bekman writes: > Sorry about not mentioning all the other speakers who have added to the > YAPC fun. Nat was there, so we will make sure to bring at least a little > of this fun to TPC. I know that people pay a lot of money to attend TPC, > compared to YAPC, but I doubt that people would comp

Re: problems compiling modperl under macos x pb

2000-11-12 Thread Gustav Kristoffer Ek
On Thu, 9 Nov 2000, Ken Williams wrote: > [EMAIL PROTECTED] (Gustav Kristoffer Ek) wrote: > >When I try compiling apache with modperl under macos x pb I got the > >folowing error. Both the source for apache and modperl is the latest > >cvs version. > > I couldn't get it to work either, but I don

Re: Putting together the TPC mod_perl track

2000-11-12 Thread Stas Bekman
> Stas Bekman <[EMAIL PROTECTED]> writes: > > BTW, if you have something to talk about that isn't really useful, but > > very funny, you should propose it as well. Dave Cross' talk about > > Sub::Approx at YAPC::Europe was the killer talk. Remember that learning > > new things is nice, but having

Re: unsubscribe modperl

2000-11-12 Thread Shawn Evans
unsubscribe modperl - Original Message - From: "Asaf Klibansky" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, November 12, 2000 12:07 AM Subject: Re: unsubscribe modperl > unsubscribe modperl > > - Original Message - > From: <[EMAIL PROTECTED]>

Re: Putting together the TPC mod_perl track

2000-11-12 Thread Piers Cawley
Stas Bekman <[EMAIL PROTECTED]> writes: > BTW, if you have something to talk about that isn't really useful, but > very funny, you should propose it as well. Dave Cross' talk about > Sub::Approx at YAPC::Europe was the killer talk. Remember that learning > new things is nice, but having a few minu

Re: Passing data structures between Stacked Handlers

2000-11-12 Thread Perrin Harkins
Thomas Klausner wrote: > If there isn't, could it be implemented by dumping the data > structure to $r->notes (with Data::Dumper) and have it eval'ed back > by the next handler? If you use $r->pnotes, you can just put a reference to an arbitrary data structure into it and it will still be there i

Re: Putting together the TPC mod_perl track

2000-11-12 Thread Stas Bekman
On Wed, 1 Nov 2000, Nathan Torkington wrote: > Matt Sergeant writes: > > Since its getting towards the end of the year, should we be thinking of > > putting together a mod_perl track for TPC? > > I've got a room allocated to mod_perl for two days of conference at > the next OScon. With this gro

Re: Putting together the TPC mod_perl track

2000-11-12 Thread Stas Bekman
> Stas et al, > > Since its getting towards the end of the year, should we be thinking of > putting together a mod_perl track for TPC? > > Has anyone got any ideas on what they'd like to either a) talk about, or > b) hear talks about ? Well, we have planned to announce the CFP when Nathan will

Re: pre-loaded modules on Solaris

2000-11-12 Thread Stas Bekman
> At 06:11 AM 11/10/00 -0500, barries wrote: > >> Address Kbytes Resident Shared Private > >> -- -- --- > >> total Kb 24720 227203288 19432 <<< pre-loaded modules > >> total Kb 14592 1297630969880 <<< not pre-loaed modules. > > >Stupid ques

Re: Passing data structures between Stacked Handlers

2000-11-12 Thread spam
On Sun, 12 Nov 2000, Dave Kaufman wrote: > > Is there a module that can do "Stacked Handler Pipelining", but > > doesn't pass around tied filehandles but data structures ? Can't you allocate some generic namespace, or better yet, create your own package called config and in that export function

Re: Passing data structures between Stacked Handlers

2000-11-12 Thread Dave Kaufman
"Thomas Klausner" <[EMAIL PROTECTED]> wrote: > Is there a module that can do "Stacked Handler Pipelining", but > doesn't pass around tied filehandles but data structures ? Andreas König's Apache::HeavyCGI is a nice alternative approach to the use of stacked handlers. > If there isn't, could

Re: Apache::Registry() and strict

2000-11-12 Thread Stas Bekman
On Tue, 7 Nov 2000, Paul DuBois wrote: > At 10:25 AM +0100 11/7/00, [EMAIL PROTECTED] wrote: > >On Tue, 7 Nov 2000, Ron Rademaker wrote: > > > >Hi, > > > >> You would think so, however every doc I read (including the one you > >> pointed out to me) told me that perl gives me a warning: > >> > >

Re: Changing REMOTE_ADDR passing to a request.

2000-11-12 Thread barries
On Sun, Nov 12, 2000 at 09:09:49PM +0800, Alson Wong wrote: > > The $ENV{'REMOTE_ADDR'}of server B still return the real ip address of > server A. Check out the link I sent to The Guide (tm), there's a Perl snippet to recover the IP and do the ->remote_ip() call: > From: barries <[EMAIL PROTECT

Re: Changing REMOTE_ADDR passing to a request.

2000-11-12 Thread Bogomolnyi Constantin
Hello , If I understand well what you want , you want to spoof the real IP adress of server A to make server B think that he is speaking to A' . Lets see the apache.pm pod : =item $c->remote_ip The dotted decimal representation of the remote client's IP address. This is set by the server when the

Re: Changing REMOTE_ADDR passing to a request.

2000-11-12 Thread Alson Wong
hi, I have not use mod_proxy_add_forward before. I have download the source code and have a look at it. It seems like just passing "X-Forwarded-For" in a header of a request. I think this is same as my code here: use LWP::UserAgent; $ua = new LWP::UserAgent; my $reqq = HTTP::Request->new('GET','h

Re: Apache::ASP and Frontpage extensions

2000-11-12 Thread G.W. Haywood
Hi there, On Tue, 7 Nov 2000, Garth Parfitt wrote: > I still cannot run a particular script that runs perfectly well > under Microsoft IIS 4.0. In what language is this script written? 73, Ged.

Apache::ASP and Frontpage extensions

2000-11-12 Thread Garth Parfitt
Hi Support I've managed to run the example ASP scripts after installing and configuring modperl under apache 1.3.12. All fine. I still cannot run a particular script that runs perfectly well under Microsoft IIS 4.0. I assume I need to load Frontpage Server extensions, but when I do, the new httpd

Re: unsubscribe modperl

2000-11-12 Thread A.T.Z.
Quoting the message received the moment you subscribed: --- Administrative commands for the modperl list --- I can handle administrative requests automatically. Please do not send them to the list address! Instead, send your message to the correct command address: To subscribe to the list, send