Re: I can't get mod_perl 2.0 working :(

2005-10-13 Thread Brandon
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

Re: I can't get mod_perl 2.0 working :(

2005-10-13 Thread Maruthi Vara Prasad Chirravuri
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

Re: Apache 2.0.54+Perl5.8.7+mod_perl2.0.1 (win32) - Redirection problem

2005-10-13 Thread Randy Kobes
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

Re: I can't get mod_perl 2.0 working :(

2005-10-13 Thread Nikolay Ananiev
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

Re: Fwd: Htgroup adding blank lin when it is within a loop

2005-10-13 Thread Perrin Harkins
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

Re: A handler just for the / location

2005-10-13 Thread Geoffrey Young
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

Re: A handler just for the / location

2005-10-13 Thread Octavian Rasnita
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

Re: A handler just for the / location

2005-10-13 Thread Octavian Rasnita
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

Re: A handler just for the / location

2005-10-13 Thread Geoffrey Young
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

RE: A handler just for the / location

2005-10-13 Thread Adam Prime x443
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

Re: A handler just for the / location

2005-10-13 Thread Philip M. Gollucci
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

Re: [RELEASE CANDIDATE] mod_perl-2.0.2 RC2

2005-10-13 Thread Cory Omand
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

A handler just for the / location

2005-10-13 Thread Octavian Rasnita
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

Fwd: Htgroup adding blank lin when it is within a loop

2005-10-13 Thread raja agireddy
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

Re: I can't get mod_perl 2.0 working :(

2005-10-13 Thread Geoffrey Young
> 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

I can't get mod_perl 2.0 working :(

2005-10-13 Thread Brandon Mayes
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.

[MP2] Disable Perl*Handlers for sublocations

2005-10-13 Thread Frank Maas
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

Re: Greetings - Looking for direction

2005-10-13 Thread Perrin Harkins
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

Re: Thank you for modperl2

2005-10-13 Thread Geoffrey Young
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

Re: Greetings - Looking for direction

2005-10-13 Thread Garrison Hoffman
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

Re: Problem installing modperl:- Dynaloader relocate issue.

2005-10-13 Thread Tom Schindl
-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 - -

Re: Setting a module to handle the requests to /

2005-10-13 Thread Garrison Hoffman
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

Re: [RELEASE CANDIDATE] mod_perl-2.0.2 RC2

2005-10-13 Thread Steve Hay
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.) ---