Re: Proble by Build mod_perl as a DSO outside the Apache Source Treevia APXS

2001-11-09 Thread Mohit Agarwal
On Fri, 9 Nov 2001, SubbaReddy M wrote: Hello Gurus, please help me to get update for mod_perl. [...] PLEASE -don't- post any HTML mails on the list. We are humans here, not browsers.

Re: Proble by Build mod_perl as a DSO outside the Apache Source Tree via APXS

2001-11-09 Thread SubbaReddy M
Sorry, my intention is to express the problem area. so that, expect the exact solution. Please, if you have solution, kindly respond or put on known one. I am eagrly, waiting for solution. Thank you, -SubbaReddy - Original Message - From: Mohit Agarwal [EMAIL PROTECTED] To: SubbaReddy

[input needed] mod_perl training and commercial support info

2001-11-09 Thread Stas Bekman
I want to create 2 more info pages on the mod_perl site: 1. mod_perl commercial support 2. mod_perl training companies Currently I have: com. support: a href=http://www.covalent.net/;Covalent Technologies/a training: a

Re: Proble by Build mod_perl as a DSO outside the Apache Source Tree via APXS

2001-11-09 Thread Stas Bekman
When I tried from browser not any page and checked log file [root@qclinux /root]# tail /var/log/httpd/error_log [Fri Nov 9 07:16:44 2001] [notice] child pid 856 exit signal Segmentation fault (11) [Fri Nov 9 07:16:44 2001] [notice] child pid 855 exit signal Segmentation fault (11)

Re: Proble by Build mod_perl as a DSO outside the Apache Source Tree via APXS

2001-11-09 Thread Stas Bekman
SubbaReddy M wrote: How can I get backtrace info to send you? If you want to solve your problem at least read the replies thoroughly and you will be all set. Here it is again. And DO NOT reply to me, but to the list. Since you have a segfault, we cannot help you until you send us the

Re: Proble by Build mod_perl as a DSO outside the Apache Source Tree via APXS

2001-11-09 Thread SubbaReddy M
Oh, thank you very much hamptone, I am really waitinting for replies. This is type encouragement is require for new bies. thank you and let you know the progress. -SubbaReddy But, - Original Message - From: hamptone [EMAIL PROTECTED] To: SubbaReddy M [EMAIL PROTECTED] Sent: Friday,

ProxyPass and DirectoryIndex

2001-11-09 Thread Philip Mak
On port 80, I'm running a non-mod_perl httpd. On port 8001, I'm running a mod_perl httpd. Port 80 is ProxyPassing to port 8001 like this: RewriteRule ^/(.+)\.asp$ http://127.0.0.1:8001/$1.asp [p] The httpds have different DocumentRoots however, so if I visit http://mysite.com/ it will return a

Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Igor Sysoev
On Fri, 9 Nov 2001, Philip Mak wrote: On port 80, I'm running a non-mod_perl httpd. On port 8001, I'm running a mod_perl httpd. Port 80 is ProxyPassing to port 8001 like this: RewriteRule ^/(.+)\.asp$ http://127.0.0.1:8001/$1.asp [p] The httpds have different DocumentRoots however, so

Re: mod_dir DirectoryIndex vs. $r-uri() manipulation

2001-11-09 Thread Nikolaus Rath
* David Pisoni [EMAIL PROTECTED] wrote: Hello again modperlers, I am using perl 5.6.1 / Apache 1.3.20 / mod_perl 1.26. I have an interesting problem which maybe someone could shed some light on : I have an early phase handler (can be done as either a PerlPostReadRequestHandler or a

Re: mod_dir DirectoryIndex vs. $r-uri() manipulation

2001-11-09 Thread David Pisoni
* David Pisoni [EMAIL PROTECTED] wrote: Hello again modperlers, I am using perl 5.6.1 / Apache 1.3.20 / mod_perl 1.26. I have an interesting problem which maybe someone could shed some light on : I have an early phase handler (can be done as either a PerlPostReadRequestHandler or a

[JOB] OpenInteract developer wanted

2001-11-09 Thread Chris Winters
A company I've been working with asked me to post this job. You'd be working with a substantial (and growing!) OpenInteract system that I designed and built, which could be a plus or a minus depending on how you look at it :-) Feel free to ask me for details. Chris

Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Balazs Rauznitz
On Fri, 9 Nov 2001, Philip Mak wrote: On port 80, I'm running a non-mod_perl httpd. On port 8001, I'm running a mod_perl httpd. Port 80 is ProxyPassing to port 8001 like this: RewriteRule ^/(.+)\.asp$ http://127.0.0.1:8001/$1.asp [p] The httpds have different DocumentRoots however, so

Apache configuration

2001-11-09 Thread Christopher Hicks
I've heard lots of people talking about doing Apache configuration via Perl sections and mod_perl, but I can't find any examples! I've looked on Sourceforge, the Guide, and dug through google. The Eagle book has the best stuff I've found so far, but it's hard for me to believe that noone has

Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Philip Mak
My current solution is to touch index.asp in the port 80 DocumentRoot and have DirectoryIndex index.asp so that it knows to ProxyPass those requests. I'd have to touch index.asp manually for every directory, though. Is there a better way around this? RewriteRule ^/$

Re: Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Andy Turner
On Fri, Nov 09, 2001 at 02:17:44PM -0500, Philip Mak wrote: RewriteRule ^(.*)/$ http://127.0.0.1:8001$1/index.asp [p] That looks like it will ProxyPass every directory to the mod_perl enabled httpd. It would make index.html not work anymore, though. I think the optimal solution would: -

Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Jorge Godoy
Philip Mak [EMAIL PROTECTED] writes: My current solution is to touch index.asp in the port 80 DocumentRoot and have DirectoryIndex index.asp so that it knows to ProxyPass those requests. I'd have to touch index.asp manually for every directory, though. Is there a better way around this? To

Re: Apache configuration

2001-11-09 Thread Scott Lanning
On Fri, 9 Nov 2001, Christopher Hicks wrote: I've heard lots of people talking about doing Apache configuration via Perl sections and mod_perl, but I can't find any examples! I've looked on Sourceforge, the Guide, and dug through google. The Eagle book has the best stuff I've found so far, but

Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Igor Sysoev
On Fri, 9 Nov 2001, Balazs Rauznitz wrote: On Fri, 9 Nov 2001, Philip Mak wrote: On port 80, I'm running a non-mod_perl httpd. On port 8001, I'm running a mod_perl httpd. Port 80 is ProxyPassing to port 8001 like this: RewriteRule ^/(.+)\.asp$ http://127.0.0.1:8001/$1.asp [p]

Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Igor Sysoev
On Fri, 9 Nov 2001, Philip Mak wrote: You can try with my mod_accel: ftp://ftp.lexa.ru/pub/apache-rus/contrib/mod_accel-1.0.6.tar.gz AccelCacheRoot cache AccelNoCacheon AccelPass / http://127.0.0.1:8081/ AccelNoPass ~*\.jpg$ ~*\.gif$ Hmm, so that would

Re: [JOB] OpenInteract developer wanted

2001-11-09 Thread SubbaReddy M
You can check on this link for required info: http://perl.apache.org/guide/ best of luck. -SubbaReddy - Original Message - From: Chris Winters [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, November 09, 2001 10:35 AM Subject: [JOB] OpenInteract developer

Here is my backtrace, please solove my problem

2001-11-09 Thread SubbaReddy M
Hello, [root@qclinux mod_perl-1.26]# gdb httpd 14947 GNU gdb 19991004 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type show copying to see

with backtrace Fw: Proble by Build mod_perl as a DSO outside the Apache Source Tree via APXS

2001-11-09 Thread SubbaReddy M
[root@qclinux mod_perl-1.26]# perl Makefile.PL PERL_DEBUG=1 EVERYTHING=1 DEBUG mode... ...adding `-g' to EXTRA_CFLAGS ...turning on PERL_TRACE ...setting PERL_DESTRUCT_LEVEL=2 Configure mod_perl with ../apache_1.3.22/src ? [y] Shall I build httpd in ../apache_1.3.22/src for you? [y] Appending

Re: ProxyPass and DirectoryIndex

2001-11-09 Thread Mohit Agarwal
On Fri, 9 Nov 2001, Jorge Godoy wrote: Philip Mak [EMAIL PROTECTED] writes: My current solution is to touch index.asp in the port 80 DocumentRoot and have DirectoryIndex index.asp so that it knows to ProxyPass those requests. I'd have to touch index.asp manually for every directory,

Re: Here is my backtrace, please solove my problem

2001-11-09 Thread SubbaReddy M
This is, i am geting. [root@qclinux mod_perl-1.26]# gdb httpd core GNU gdb 19991004 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions.