Re: mod_perl fails tests

2002-12-18 Thread Stas Bekman
[EMAIL PROTECTED] wrote: I am having some trouble installing mod_perl on my redhat linux 8.0 box. I successfully installed apache 2.0.43 from source and placed it in the /usr/local/apache2 directory. In addition, I downloaded the latest version of mod_perl from cvs. I successfully used

Re: Release date for mod_perl 2.0

2002-12-18 Thread Stas Bekman
Ask Bjoern Hansen wrote: On 17 Dec 2002, Devin Heitmueller wrote: [...] I'm in a difficult position because the project will be completed in a couple of months. If the consensus is that mod_perl 2.0 will be released by that point, then everything will be fine (I'll develop using the beta

Double execution of PerlRequire statement

2002-12-18 Thread Andreas Rieke
Hi, working with apache 1.3.26, mod_perl/1.27 and perl 5.6.0 on a Redhat Linux 7.2 with kernel 2.4.7-10, I have serious problems with a PerlRequire statement in the httpd.conf apache configuration file since the script is executed twice with the same pid. The PerlRequire statement is the first

[OT] mod_proxy, mod_perl, php

2002-12-18 Thread Scott Alexander
At the moment I have a front_end server with no php support. Backend is mod_perl. I'm planning to extend our document management system to serve www pages. The html documents are on the mod_perl machine. What happens if users add php code to their html documents? If I add php support on the

Re: [OT] mod_proxy, mod_perl, php

2002-12-18 Thread Raf
On Wed, 18 Dec 2002, Scott Alexander wrote: The html documents are on the mod_perl machine. What happens if users add php code to their html documents? If I add php support on the front_end will it work normally? * Have you thought of setting a separate document route for php (if they are

Re: [OT] mod_proxy, mod_perl, php - RESEND

2002-12-18 Thread Raf
Still half asleep. Stupid typos have been un-typofied: On Wed, 18 Dec 2002, Raf wrote: On Wed, 18 Dec 2002, Scott Alexander wrote: The html documents are on the mod_perl machine. What happens if users add php code to their html documents? If I add php support on the front_end will it

Re: pass-thru/redirect/DECLINE to *.jpg

2002-12-18 Thread Geoffrey Young
my $fh=$pic-open; #returns the filehandle $r-send_fd($fh); close($fh); return OK; I used send_fd because it seemed from the documentation that it is a easier/better(?) method than rewriting the URI and setting default-handler. Is that not so? if you were to use

RE: Double execution of PerlRequire statement

2002-12-18 Thread FFabrizio
Though I have not encountered this problem personally, it's been discussed here a few times before, and a google search of PerlRequire running twice turned up a page full of promising leads, so I suggest peeking at the archives and google. -Fran -Original Message- From: Andreas Rieke

Re: [OT] mod_proxy, mod_perl, php

2002-12-18 Thread Perrin Harkins
Scott Alexander wrote: At the moment I have a front_end server with no php support. Backend is mod_perl. I'm planning to extend our document management system to serve www pages. The html documents are on the mod_perl machine. What happens if users add php code to their html documents?

[OT] Ideas for limiting form submissions

2002-12-18 Thread Bill Moseley
I've got a mod_perl feed-back form that sends mail to a specific address.. Spammers have their bots hitting the form now. The tricks I know of are: - generate a random image of numbers and make the user type in the numbers on the form. Painful for the user and spammers probably have OCR! -

RE: [OT] Ideas for limiting form submissions

2002-12-18 Thread Clare, Bruce W
Some other imperfect solutions: * Take the CRC (or some other hash function) of the message content and reject messages with duplicate CRC (still vulnerable to morphing of the message). * limit submissions by sender to one every X minutes. Avoids the AOL issue, but vulnerable to DDOS and

Re: Double execution of PerlRequire statement

2002-12-18 Thread Kyle Oppenheim
This behavior is documented in the guide... http://perl.apache.org/docs/1.0/guide/config.html#Apache_Restarts_Twice_On_S tart - kyle - Original Message - From: Andreas Rieke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 18, 2002 1:41 AM Subject: Double execution of

Re: [OT] Ideas for limiting form submissions

2002-12-18 Thread Perrin Harkins
Bill Moseley wrote: what would you recommend for caching the md5 strings. Cache::Cache or DBM? I suppose a Cache::Cache file cache would be the easiest. In order of speed: IPC::MM BerkeleyDB (with built-in locking) Cache::Mmap Cache::FileBackend (from Cache::Cache -- no need to use

RE: [OT] Ideas for limiting form submissions

2002-12-18 Thread Narins, Josh
Can GIMP be programmatically set up to warp/woof/weird-out an image? Yahoo's warped words works, I bet, since they use it. I'm referring to get getting an anon email account from yahoo.com -Original Message- From: Bill Moseley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18,

Re: Double execution of PerlRequire statement

2002-12-18 Thread Perrin Harkins
Kyle Oppenheim wrote: This behavior is documented in the guide... http://perl.apache.org/docs/1.0/guide/config.html#Apache_Restarts_Twice_On_S tart This is true, although technically it shouldn't require the same file twice unless you have PerlFreshRestart on (which is a bad idea). - Perrin

Re: Double execution of PerlRequire statement

2002-12-18 Thread Geoffrey Young
Kyle Oppenheim wrote: This behavior is documented in the guide... http://perl.apache.org/docs/1.0/guide/config.html#Apache_Restarts_Twice_On_S tart it may not be that simpple - what Andreas is likely seeing is likely a real bug that's been around for a while:

Re: [OT] Ideas for limiting form submissions

2002-12-18 Thread Issac Goldstand
- Original Message - Subject: RE: [OT] Ideas for limiting form submissions Can GIMP be programmatically set up to warp/woof/weird-out an image? Yahoo's warped words works, I bet, since they use it. I'm referring to get getting an anon email account from yahoo.com They actually use

mod_perl troubles with RedHat 8.0 and Perl 5.8.0

2002-12-18 Thread iansmith
I have compiled apache_1.3.27 with mod_perl-1.27 and got no errors. I have mod_perl as a shared module. I can run Apache without mod_perl fine, but when I activate the mod_perl module, it gives me this in error_log for every connection and fails to deliver any pages at all. [notice] child pid

Re: [OT] Ideas for limiting form submissions

2002-12-18 Thread Bill Moseley
At 02:51 PM 12/18/02 -0500, Daniel Koch wrote: Check out Gimpy, which I believe is what Yahoo uses: http://www.captcha.net/captchas/gimpy/ I'm thinking of something along those lines. This problem is this is on Solaris 2.6 w/o root, and I'll bet it would take some time to get The Gimp and GTK

Re: [OT] Ideas for limiting form submissions

2002-12-18 Thread Vivek Khera
BM == Bill Moseley [EMAIL PROTECTED] writes: BM I've got a mod_perl feed-back form that sends mail to a specific address.. BM Spammers have their bots hitting the form now. The tricks I know of are: Rename your script and the link pointing to it. It will take some time for them to follow.

Re: mod_perl troubles with RedHat 8.0 and Perl 5.8.0

2002-12-18 Thread Stas Bekman
iansmith wrote: I have compiled apache_1.3.27 with mod_perl-1.27 and got no errors. I have mod_perl as a shared module. I can run Apache without mod_perl fine, but when I activate the mod_perl module, it gives me this in error_log for every connection and fails to deliver any pages at all.

installing mod_perl

2002-12-18 Thread Carl Holm
Hello, When attempting to install mod_perl for Win32 ActivePerl using the repository shown, I receive this error message "Error: no suitable installation target found for package mod_perl.". http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer I am using ActivePerl Build 804 on

Re: mod_perl fails tests

2002-12-18 Thread jediknight
Yes, I was able to find CGI.pm. Do you know how I can fix my problem and get mod_perl installed and configured. Thanks- Rodney On Wed, 18 Dec 2002 16:13:19 +0800 Stas Bekman [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: I am having some trouble installing mod_perl on my redhat linux

Re: mod_perl fails tests

2002-12-18 Thread Nick Tonkin
On Wed, 18 Dec 2002 [EMAIL PROTECTED] wrote: Yes, I was able to find CGI.pm. You may have found it but your webserver hasn't. Do you know how I can fix my problem and get mod_perl installed and configured. You need to fix this part first. I would try unintsalling and then reinstalling

Re: mod_perl troubles with RedHat 8.0 and Perl 5.8.0

2002-12-18 Thread iansmith
On Thu, 19 Dec 2002, Stas Bekman wrote: Before you rebuild it, if you can get the segfault backtrace, that would be great. If you don't know how, check: http://perl.apache.org/docs/1.0/guide/help.html#How_to_Report_Problems Tried to do a make test in the mod_perl directory and got...

Re: installing mod_perl

2002-12-18 Thread Randy Kobes
On Wed, 18 Dec 2002, Carl Holm wrote: Hello, When attempting to install mod_perl for Win32 ActivePerl using the repository shown, I receive this error message Error: no suitable installation target found for package mod_perl..

[mp2.0/Win2K] Compress::Zlib works under /cgi-bin/, not under /perl/

2002-12-18 Thread Ron Savage
Folks Env: OS: Win2K Server Version: Apache/2.0.43 (Win32) mod_perl/1.99_08-dev Perl/v5.8.0 Server Built: Oct 4 2002 17:26:50 (ie an early version of 5.8.0) This Perl/Apache combo was built by Randy Kobes. Problem: Calls to Compress::Zlib's gzwrite succeed if code runs under /cgi-bin/, but

Re: mod_perl troubles with RedHat 8.0 and Perl 5.8.0

2002-12-18 Thread Aaron Johnson
On Wed, 2002-12-18 at 17:48, iansmith wrote: I have compiled apache_1.3.27 with mod_perl-1.27 and got no errors. I have mod_perl as a shared module. I can run Apache without mod_perl fine, but when I activate the mod_perl module, it gives me this in error_log for every connection and fails

Re: mod_perl troubles with RedHat 8.0 and Perl 5.8.0

2002-12-18 Thread Aaron Johnson
On Wed, 2002-12-18 at 20:30, Stas Bekman wrote: iansmith wrote: I have compiled apache_1.3.27 with mod_perl-1.27 and got no errors. I have mod_perl as a shared module. I can run Apache without mod_perl fine, but when I activate the mod_perl module, it gives me this in error_log for

Re: mod_perl troubles with RedHat 8.0 and Perl 5.8.0

2002-12-18 Thread iansmith
On 19 Dec 2002, Aaron Johnson wrote: How does your perl -V differ from the Mandrake one? The default install of Perl didn't have a perldoc either, I am wondering if it is a bad build. Mine is [root@www2 root]# perl -V Summary of my perl5 (revision 5.0 version 8 subversion 0)