Apache::ASP vs GD

1999-10-02 Thread Rod Butcher
I need to design a set of pages which will each have 4 - 9 small dynamically generated pieces of information embedded in them (i.e. current date & time at various cities). Each of the 4-9 timestamps will be calculated realtime by a Perl script. I can see two ways of using mod_perl to do this :- 1

Re: Apache::DBI and Apache::AuthenDBI questions.

1999-10-02 Thread Edmund Mergl
"Sergey V. Kolychev" wrote: > > Good day. > I have 2 things are not very clear to me. > I'm working with ApacheDBI-0.82. > 1) Does Apache::DBI cashing for Apache::AuthenDBI and for regular > DBI->connect by Apache::Registry in same time. > I mean one connection per child for authentification and

Apache::DBI and Apache::AuthenDBI questions.

1999-10-02 Thread Sergey V. Kolychev
Good day. I have 2 things are not very clear to me. I'm working with ApacheDBI-0.82. 1) Does Apache::DBI cashing for Apache::AuthenDBI and for regular DBI->connect by Apache::Registry in same time. I mean one connection per child for authentification and for Apache::Registry scripts. The userid/pa

HTML::Embperl and 'undefined symbol: perl_eval_sv'

1999-10-02 Thread Gustav Kristoffer Ek
When I use HTML::Embperl for instance like: perl -MHTML::Embperl -e 'HTML::Embperl::Execute(some_embperl.epl)' I got: perl: error in loading shared libraries: /usr/local/lib/site_perl/5.00561/i686-linux/auto/HTML/Embperl/Embperl.so: undefined symbol: perl_eval_sv it seams that it can't be link

broken local SIG{CHLD} ?

1999-10-02 Thread Stas Bekman
Hi, I'm working with a forked process and I have a problem with: local SIG{CHLD} = "IGNORE"; to properly kill the forked process when it's done. The problem that it works correctly only if I don't use the local() keyword, but then I alter the SIG{CHLD} for the whole process' life! Here is the

Re: bounced mailing franzy again?

1999-10-02 Thread Ask Bjoern Hansen
On Sat, 2 Oct 1999, John D Groenveld wrote: > > Please send stuff like this directly to me, sometimes I don't read the > > list for days. > > You mean <[EMAIL PROTECTED]>, right? Whatever, modperl-owner actually gets filtered (all the stuff bouncing for approval and stuff goes there), so on bus

Re: bounced mailing franzy again?

1999-10-02 Thread John D Groenveld
> Please send stuff like this directly to me, sometimes I don't read the > list for days. You mean <[EMAIL PROTECTED]>, right? John [EMAIL PROTECTED]

Re: bounced mailing franzy again?

1999-10-02 Thread Ask Bjoern Hansen
On Sat, 2 Oct 1999, Stas Bekman wrote: > <[EMAIL PROTECTED]>: host Mail.alameda.net[207.90.181.2] said: 550 Temporary > block 5xx and "temporary"? Clever clever. [...] > Received: from hyperreal.org (taz.hyperreal.org [209.133.83.16]) by >hermes.accept.com (8.8.7/8.8.7) with SMTP id

Re: Another IE5 complaint

1999-10-02 Thread Randy Harmon
On Sat, Oct 02, 1999 at 03:21:17PM -0400, Greg Stark wrote: > "Joe Pearson" <[EMAIL PROTECTED]> writes: [] > > whenever a IE5 user visits a page in their "Favorites", IE5 also trys > > to GET favicon.ico from the same site. Therefor I have hundreds of > > "File does not exist:" errors in my

Re: Another IE5 complaint

1999-10-02 Thread Greg Stark
"Joe Pearson" <[EMAIL PROTECTED]> writes: > Hi all, > > Maybe everyone already knows this, but I just discovered that > whenever a IE5 user visits a page in their "Favorites", IE5 also trys > to GET favicon.ico from the same site. Therefor I have hundreds of > "File does not exist:" errors in

Re: make test fails

1999-10-02 Thread Pepi
Thank you both, I found the what was causing problems: RedHat by default creates all home directories with no read permissions for third parties, so when I chnaged that it worked. Thanks again, Petar __ Petar Maymounkov

Re: make test fails

1999-10-02 Thread Stas Bekman
> Hi everybody, > > I am installing apache 1.3.9 and modperl 1.21: > > I untar them in two subdirectories of the same home directory, > then I go to the modperl directory and type: > > perl Makefile.PL APACHE_SRC=../apache_1.3.9/src \ > DO_HTTPD=1 USE_APACI=1 PERL_MARK_WHERE=1 EVERYTHING=1

Re: make test fails

1999-10-02 Thread Anthony Gardner
It has been suggested to increase the sleep in that script to let the server warm up a bit more. The only time I experienced that problem was when something else was wrong with the install. Change the sleep first from 1 to 5 secs and see what happens. Apart from that I don't know. The port nu

Re: bounced mailing franzy again?

1999-10-02 Thread Anthony Gardner
Yep, I'm receiving shed loads as well. My wrist is killing me deleting them all!! >From: Stas Bekman <[EMAIL PROTECTED]> >To: mod_perl list <[EMAIL PROTECTED]> >Subject: bounced mailing franzy again? >Date: Sat, 2 Oct 1999 14:45:32 +0200 (IST) > >Am I the only victim of someone at [EMAIL PROTEC

make test fails

1999-10-02 Thread Pepi
Hi everybody, I am installing apache 1.3.9 and modperl 1.21: I untar them in two subdirectories of the same home directory, then I go to the modperl directory and type: perl Makefile.PL APACHE_SRC=../apache_1.3.9/src \ DO_HTTPD=1 USE_APACI=1 PERL_MARK_WHERE=1 EVERYTHING=1 then: make (it

RE: bounced mailing franzy again?

1999-10-02 Thread Eric Cholet
On Saturday, October 02, 1999 2:46 PM, Stas Bekman [SMTP:[EMAIL PROTECTED]] wrote: > Am I the only victim of someone at [EMAIL PROTECTED]? or do anyone else > receives zillions replicated emails? > No you're not, I received hundreds, emailed [EMAIL PROTECTED] hours ago. I am now rejecting them,

Re: relative redirect (was RE: Chaining and redirection)

1999-10-02 Thread Dirk Lutzebaeck
David Harris writes: > Can I really just do a "Location: /auth/" and have it work? > > - David Harris >Principal Engineer, DRH Internet Services Works for me, ie. Netscape 4.6 Dirk

relative redirect (was RE: Chaining and redirection)

1999-10-02 Thread David Harris
Dirk Lutzebaeck wrote: > ie. > > > Options ExecCGI > SetHandler perl-script > PerlHandler Apache::OutputChain Apache::GzipChain Apache::Registry > > > and /PERL/x.pl > > use Apache; > use Apache::Constants qw(REDIRECT); > $r = Apache->request; > $r->header_out("Location" => "/y.html"); > $r->st

RE: Chaining and redirection

1999-10-02 Thread Dirk Lutzebaeck
Gerald Richter writes: > > If you try > > [- > use Apache::Constants qw(REDIRECT); > $req_rec->header_out("Location" => "/y.html"); > $req_rec->status(REDIRECT); > -] > > and nothing else in the file, does this work or not? No, not with chaining enabled. Without chaining it works

RE: Chaining and redirection

1999-10-02 Thread Gerald Richter
If you try [- use Apache::Constants qw(REDIRECT); $req_rec->header_out("Location" => "/y.html"); $req_rec->status(REDIRECT); -] and nothing else in the file, does this work or not? Gerald BTW. The location should be a full URL including the host part

IPC::ShareLite? [was Re: MOD_PERL question]

1999-10-02 Thread Gerd Knops
Doug MacEachern wrote: > > I have the feeling IPC::Shareable is no longer supported. have you tried > swaping it for IPC::ShareLite? > I checked CPAN and can't find IPC::ShareLite. Where is it hiding? Thanks Gerd

bounced mailing franzy again?

1999-10-02 Thread Stas Bekman
Am I the only victim of someone at [EMAIL PROTECTED]? or do anyone else receives zillions replicated emails? Accoring to the headers this time it doesn't come from apache.org but from amazon.com!!! As of this moment I've got about 800 emails most of them are the same... I've contacted [EMAIL PR

Re: Apache segfaulting upon perl module load

1999-10-02 Thread Michael Alan Dorman
Doug MacEachern <[EMAIL PROTECTED]> writes: > one solution is to build Apache and mod_perl from source, and linking > mod_perl static instead of a dso. So is using mod_perl as a DSO, um, deprecated? Should it just be done as a last resort, or what? Mike.

Re: MOD_PERL question

1999-10-02 Thread Mahesh Ganesan
We successfully installed IPC::Shareable. Do not get the latest version of IPC::Shareable, get the one before the latest (I do not recall the version). Also make sure "Storable" module is installed (otherwise IPC::Shareable is not going to work). Mahesh K. Ganesan Doug MacEachern wrote: > On M

RE: Install Problem - Cannot load libperl.so

1999-10-02 Thread McNamara, Ken
Doug - Thanks very much for the answer - I was missing something obvious. Along the way I discovered that the Perl Configure file was putting a space after the -R attribute - which was causing gcc to toss it's cookies on the Apache test compile (it was trying to treat the CORE directory as a fil

Re: problems configuring apache

1999-10-02 Thread mike allerhand
Apache-1.3.9 with mod_perl-1.21 now successfully installed under RedHat 6.0 PC Linux. Earlier problems with RedHat's pre-installed version, and rpm's, still a mystery. I got a working installation by following the instructions in mod_perl-1.21/INSTALL.apaci. I was not at first successful using t

Re: Chaining and redirection

1999-10-02 Thread Dirk Lutzebaeck
Cliff Rayman writes: > the exit is broken in some contexts. > if this is part of a subroutine or called from an execute that may be the > problem. Hmm, in my case there is no execute for sub envolved. I'm using [- use Apache; use Apache::Constants qw(REDIRECT); $r = Apache->request;

RE: Chaining and redirection

1999-10-02 Thread Dirk Lutzebaeck
Gerald Richter writes: > > > > Requesting y.html returns just '1 2', no redirection is taking place. > > > > I have also tried $r->internal_redirect and > > $r->internal_redirect_handler also in combination with Apache::exit() > > all with the same result. > > > > It works when setting Per