symbol ap_get_server_banner: referenced symbol not found

2010-02-01 Thread Shigeru Yanagibayashi
Hello, I installed the following on my Solaris10 box. perl-5.8.8.tar.gz openssl-0.9.8l.tar.gz httpd-2.0.63.tar.gz mod_auth_cookie-0.1-apache2.tar.gz mod_perl-2.0.4.tar.gz perl: % /usr/local/bin/perl -V Summary of my perl5 (revision 5 version 8 subversion 8) configuration: Platform: osname

Re: rewrite url in modperl

2010-02-01 Thread Torsten Förtsch
On Monday 01 February 2010 15:19:34 m...@normalperson.e4ward.com wrote: > > Keep in mind that /path/12345.mp4 is still a valid URI and hence can be > > requested by the browser. But you can check if the request is the result > > of an internal redirect by checking $r->prev and deny it unless set. >

Re: rewrite url in modperl

2010-02-01 Thread moli
2010/2/1 Torsten Förtsch : > On Monday 01 February 2010 15:03:53 m...@normalperson.e4ward.com wrote: >> 2010/2/1 Torsten Förtsch : >> > If you don't want the browser to see the actual location of the mp4 file >> > then you need $r->internal_redirect: >> > >> > use Apache2::SubRequest (); >> > ... >

Re: rewrite url in modperl

2010-02-01 Thread Torsten Förtsch
On Monday 01 February 2010 15:03:53 m...@normalperson.e4ward.com wrote: > 2010/2/1 Torsten Förtsch : > > If you don't want the browser to see the actual location of the mp4 file > > then you need $r->internal_redirect: > > > > use Apache2::SubRequest (); > > ... > >if ( is_valid_ip($ip) ){ > >

Re: PerlOptions +Parent

2010-02-01 Thread Torsten Förtsch
On Monday 01 February 2010 13:23:19 Rolf Schaufelberger wrote: > Am 01.02.2010 um 12:32 schrieb Torsten Förtsch: > > On Monday 01 February 2010 11:48:19 Carl Johnstone wrote: > >> So rather than +Parent which just gives a VirtualHost a separate > >> instance - what would be nice would be some way

Re: rewrite url in modperl

2010-02-01 Thread moli
2010/2/1 Torsten Förtsch : > If you don't want the browser to see the actual location of the mp4 file then > you need $r->internal_redirect: > > use Apache2::SubRequest (); > ... >    if ( is_valid_ip($ip) ){ >        $r->internal_redirect('/path/12345.mp4'); >        return Apache2::Const::OK; >

Re: rewrite url in modperl

2010-02-01 Thread Torsten Förtsch
On Monday 01 February 2010 14:10:17 m...@normalperson.e4ward.com wrote: > I have this modperl handler: > > use Apache2::RequestRec (); > use Apache2::Connection (); > use Apache2::RequestUtil (); > use Apache2::ServerUtil (); > use Apache2::Log (); > use Apache2::Request (); > > use Apache2::Cons

rewrite url in modperl

2010-02-01 Thread moli
Hello, I have this modperl handler: use Apache2::RequestRec (); use Apache2::Connection (); use Apache2::RequestUtil (); use Apache2::ServerUtil (); use Apache2::Log (); use Apache2::Request (); use Apache2::Const -compile => qw(OK FORBIDDEN); sub handler { my $r = shift; my $q = Apach

Re: PerlOptions +Parent

2010-02-01 Thread Torsten Förtsch
On Monday 01 February 2010 11:48:19 Carl Johnstone wrote: > So rather than +Parent which just gives a VirtualHost a separate instance > - what would be nice would be some way of specifying which perl instance > to use in this VirtualHost. Something like: > > > ServerName www.example1.com > Per

PerlOptions +Parent

2010-02-01 Thread Carl Johnstone
Suggestion for a wishlist feature. I've got around 20 different sites, each of which is configured as it's own VirtualHost. Now from time to time I run a different newer version of our app on some of the VirtualHosts, whilst leaving others running the original code base. Following some discuss