Philip M. Gollucci wrote:
A release candidate for mod_perl 2.0.2 is now available for testing.
All tests OK now on WinXP/VC6 with perl-5.8.7 and apache-2.0.54.
(And I still have the Apache 1 installed in C:\apache which broke things
for me when testing RC1.)
---
Octavian Rasnita wrote:
> Is it possible to configure httpd.conf in such a way that when the users
> request the / directory, that module will handle it, but if the users
> request for a static file like /style.css for example, that file is served?
>
> I have tried:
>
>
> SetHandler perl-script
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Bring it back to the list:
Hi,
assuming you have installed perl in /opt/perl4modperl. You have to call
mod-perl's Makefile.PL like this:
- -8<-
cd /tmp/mod_perl-2.0.1
/opt/perl4modperl/bin/perl Makefile.PL
- -
Sean Kelly wrote:
> Long story short, I started out looking for a way to have Apache
> automatically append a standard footer to the bottom of pages whether
> html, php, cgi or other files/locations that I matched. Searching
> around, I found that Apache::Sandwich was probably a decent way to
> ac
Randal L. Schwartz wrote:
> In spite of my grumblings earlier...
>
> I would like to extend a great "thank you" to the modperl2 team.
thanks!
--Geoff
Sean Kelly wrote:
Long story short, I started out looking for a way to have Apache
automatically append a standard footer to the bottom of pages whether
html, php, cgi or other files/locations that I matched.
The right way to do this in mod_perl 2 is a filter:
http://perl.apache.org/docs/2.0/u
Garrison Hoffman wrote:
> Here is another way, add your images and static files to locations
> with default handlers:
>
>
> SetHandler none
>
This seems to disable the PerlHandler, but the Perl*Handlers remain
intact. I have defined a PerlAuthenHandler, PerlAuthzHandler and a
PerlFixupHa
Hi everyone. I've tried using google, and posting on forums, and no one
seems to have an answer for me. Everything on google is all about using
apache 1.3 with mod_perl, and the stuff about 2.0 doesn't really give
detailed instructions about anything. So hopefully someone on here can
help.
> mod_so.c
since you already have mod_so in your httpd, why not just compile mod_perl
as a DSO? the main reasons why DSO was not the method of choice for 1.3 are
pretty much gone now. in fact, things are quite the opposite - mod_perl 2.0
was developed using DSO from the start, leaving static c
Please, If anyone can help me. I know this is not a modperl issue but
just wanted to know if anyone handled it before.
Regards,
Raja
-- Forwarded message --
From: raja agireddy <[EMAIL PROTECTED]>
Date: Oct 12, 2005 10:41 AM
Subject: Htgroup adding blank lin when it is within a lo
Hi,
I have asked on this list about how I can put a handler listen just to the /
location, but not to other locations which are not handled by other perl
handlers.
I found the answer, and here it is:
Instead of using:
SetHandler perl-script
PerlResponseHandler ModPerl::Testing
I can use:
S
Christopher H. Laco wrote:
Philip M. Gollucci wrote:
A release candidate for mod_perl 2.0.2 is now available for testing.
Please grab the candidate from
http://people.apache.org/~pgollucci/mp2/mod_perl-2.0.2-RC2.tar.gz
and report back successes or failures. When reporting failures, please see
Octavian Rasnita wrote:
Instead of using:
SetHandler perl-script
PerlResponseHandler ModPerl::Testing
I can use:
SetHandler perl-script
PerlResponseHandler ModPerl::Testing
Does that still for for example
http://google.com
vs
http://google.com/
--
END
If you type http://domain.com into a browser, it issues a request for /. (at
least firefox does).
I doubt you can do a GET request for an empty path, i assume that that is
handled by the browser. If it wasn't, i would think that mod_dir would bounce
the request to '/', and it would still wor
Adam Prime x443 wrote:
> If you type http://domain.com into a browser, it issues a request for /.
> (at least firefox does).
>
> I doubt you can do a GET request for an empty path,
/ is required per the rfc, so you cannot omit it. go ahead and try it via
telnet on your favorite site :)
--Geof
From: "Geoffrey Young" <[EMAIL PROTECTED]>
>
> / is required per the rfc, so you cannot omit it. go ahead and try it via
> telnet on your favorite site :)
>
> --Geoff
Well, here it is just a test:
telnet www.site.com 80
GET HTTP://www.site.com HTTP/1.1
Host: www.site.com
And it works. So my opi
From: "Philip M. Gollucci" <[EMAIL PROTECTED]>
> Octavian Rasnita wrote:
> > Instead of using:
> >
> >
> > SetHandler perl-script
> > PerlResponseHandler ModPerl::Testing
> >
> >
> > I can use:
> >
> >
> > SetHandler perl-script
> > PerlResponseHandler ModPerl::Testing
> >
> Does that still fo
Octavian Rasnita wrote:
> From: "Geoffrey Young" <[EMAIL PROTECTED]>
>
>>/ is required per the rfc, so you cannot omit it. go ahead and try it via
>>telnet on your favorite site :)
>>
>>--Geoff
>
>
> Well, here it is just a test:
>
> telnet www.site.com 80
> GET HTTP://www.site.com HTTP/1.1
On Thu, 2005-10-13 at 12:43 -0400, raja agireddy wrote:
> Please, If anyone can help me. I know this is not a modperl issue but
> just wanted to know if anyone handled it before.
The list you want for general apache help is httpd-users:
http://httpd.apache.org/lists.html#http-users
You can also u
You are doing things wrong. This is right:
# cd /usr/local/src
# tar -xzvf *.tar.gz
# cd mod_perl-2.0.1
# perl Makefile.PL MP_USE_STATIC=1 \
MP_AP_PREFIX=/usr/local/src/httpd-2.0.54 \
MP_AP_CONFIGURE="--with-mpm=prefork --prefix=/usr/bin/apache2"
# make
# make install
"Brandon Mayes" <[EMAIL PRO
On Tue, 11 Oct 2005, Saurabh Soni wrote:
Hi,
I have a perl web-application on apache that needed upgrades for perl,
apache and mod_perl. I setup a server (win32) running Apache 2.0.54 with
perl 5.8.7 and mod_perl 2.0.1 (Randy Kobes win32 build), made the necessary
httpd.conf changes but got stu
Hi Brandon,
mod_perl : mod_perl-2.0.1
Apache : httpd-2.0.54
Do u have Perl Installed - Version 5.8.0 minimum or greater.
The actual building process is as follows : (1) APACHE (2) PERL (3) MOD_PERL
Plz don't extract all the tar.gz files at a stretch. Extract one after
the other. I mean, firs
Yes of course I have perl installed. I even posted my output from perl -V
(see output below). I wound up giving up on the static mod_perl and built
it dynamically. I have it working...I think. I can get the httpd server to
start, and it loads the perl_module as well as Apache::Session and
A
23 matches
Mail list logo