Re: Apache::MP3 requires PerlSetupEnv on, patch to convert to Apache::Request

2002-03-04 Thread Stas Bekman
Eric Hammond wrote: Lincoln: After a day of adding debug statements into Apache::MP3 and CGI.pm I finally tracked down why my streaming was not working. I had listened to http://perl.apache.org/guide/performance.html#PerlSetupEnv_Off which caused $ENV{QUERY_STRING} to not be set which

[WOT] Opcode/ Safe

2002-03-04 Thread Martin Haase-Thomas
Hi all, maybe this is really far WOT, but one shouldn't give up hope, as we all know... Does anyone have experience with Opcode and Safe? The thing is that I have to create my own secure namespace for some reasons - and don't know how to do. What does not work is the following:

Re: [WOT] Opcode/ Safe

2002-03-04 Thread Martin Haase-Thomas
Ok, forget my post, her's the answer: #!/usr/bin/perl -w use Safe; my $page = new Safe (huhu); my $opset = Opcode::opset qw(:base_io :base_orig :base_thread :filesys_read :sys_db :filesys_open :filesys_write :subprocess :ownprocess :still_to_be_decided

problems with $r-status('OK')

2002-03-04 Thread clayton cottingham
hello: im using Apache/1312 and mod_perl/124 every time i use the $r-status('OK'); it gives me this error Argument OK isn't numeric in subroutine entry has anyone come accross this before? thanks

Re: problems with $r-status('OK')

2002-03-04 Thread Hans Juergen von Lengerke
clayton cottingham [EMAIL PROTECTED] on Mar 4, 2002: every time i use the $r-status('OK'); OK in this context is not a string, but a constant that is defined in Apache::Constants. Modify your code like this: use Apache::Constants qw(:common); ... $r-status(OK); # No quotes, it's a

Re: problems with $r-status('OK')

2002-03-04 Thread clayton cottingham
Hans Juergen von Lengerke wrote: clayton cottingham [EMAIL PROTECTED] on Mar 4, 2002: every time i use the $r-status('OK'); OK in this context is not a string, but a constant that is defined in Apache::Constants. Modify your code like this: use Apache::Constants qw(:common);

Re: webmail for mod_perl?

2002-03-04 Thread Wim Kerkhoff
will trillich wrote: On Thu, Feb 28, 2002 at 03:59:05PM -0800, Wim Kerkhoff wrote: will trillich wrote: is there a sane implementation of webmail-style mod_perl modules for apache? Are you needing any specific functionality? sparkle (a rewrite of acmemail) works as a

Re: problems with $r-status('OK')

2002-03-04 Thread Philip M. Gollucci
you'll want to do use Apache::Constants qw(OK); and change that to $r-status(OK); as OK is actually defined as a constant function sub OK { 0 } END -- Philip M. Gollucci (p6m7g8) [EMAIL PROTECTED] 301.314.3118

Re: Apache::DB patch

2002-03-04 Thread Enrico Sorcinelli
On Fri, 01 Mar 2002 11:16:15 +0800 Stas Bekman [EMAIL PROTECTED] wrote: Enrico Sorcinelli wrote: Hi all, I started to use Apache::DB (0.06) to interactively debug under mod_perl using ptkdb. I see that is necessary to modify Apache/DB.pm but, after this, the debugger will be run always

Re: [ANNOUNCE] mod_perl logo

2002-03-04 Thread Jeffrey W. Baker
On Mon, 2002-03-04 at 08:26, Jonathan M Hollin wrote: Friends, The time has now come to cast your vote(s) for the new mod_perl logo (to accompany the new mod_perl website which is now almost complete) You can select your preferred logo at http://wwwtohubohunet/cgi/mpchallenge; You can

RE: ANNOUNCE: Apache::Watchdog::RunAway v0.3

2002-03-04 Thread Cahill, Earl
Any chance of being able to define a runaway script based on percent of CPU or percent of memory used as well as time in seconds? This would be great for us. Every so often we get a script that just starts choking on memory, and gets every process on the box swapping, which kills our load.

Re: ANNOUNCE: Apache::Watchdog::RunAway v0.3

2002-03-04 Thread Perrin Harkins
Cahill, Earl wrote: Any chance of being able to define a runaway script based on percent of CPU or percent of memory used as well as time in seconds? This would be great for us Every so often we get a script that just starts choking on memory, and gets every process on the box swapping,

RE: ANNOUNCE: Apache::GTopLimit v1.0

2002-03-04 Thread Cahill, Earl
Looks like this will do the limit by CPU or memory used. Guess I should read my whole inbox before I start to respond. Thanks, Earl -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 8:40 PM To: modperl list Subject: ANNOUNCE:

segfaulting upon request

2002-03-04 Thread Steev Hise
hi, I've installed and used mod_perl with great sucess before, but I'm having trouble with the latest version of mod_perl and apache. (version 1.26 with apache 1.3.23) upon startup there's a segmentation fault upon any http request. i'd be grateful for any assistance. here's what the make test

RE: Blank pages

2002-03-04 Thread John E. Leon Guerrero
i ran into a number of similar problems that did not seem to be documented anywhere else. in my case, we had a number of scripts that would change STDOUT in some fashion (usually so they could set $|) but then die due to some error before resetting STDOUT back. then any mod-perl script that the

Re: Blank pages

2002-03-04 Thread Perrin Harkins
John E Leon Guerrero wrote: in my case, we had a number of scripts that would change STDOUT in some fashion (usually so they could set $|) but then die due to some error before resetting STDOUT back Interesting One safety measure to prevent this would be to install a cleanup handler that

documentation for mod_auth_mysql

2002-03-04 Thread Grant Babb
all- i am having no luck locating the documentation for mod_auth_mysql. any help would be greatly appreciated. thanks in advance- grant Grant BabbEmail: [EMAIL PROTECTED] Data Junction Corporation Phone: (512) 459-1308 2201 Northland Dr. Fax: (512) 459-1309 Austin, TX 78756-1117 Web:

re: mod_auth_mysql usage/documentation

2002-03-04 Thread Grant Babb
all- I think I found it. Can someone take a gander at http://www.cgi101.com/class/password/mod_auth_mysql.html and let me know if this is current/correct? thanks. Grant BabbEmail: [EMAIL PROTECTED] Data Junction Corporation Phone: (512) 459-1308 2201 Northland Dr. Fax: (512) 459-1309 Austin, TX

Re: ANNOUNCE: Apache::GTopLimit v1.0

2002-03-04 Thread Stas Bekman
Cahill, Earl wrote: Looks like this will do the limit by CPU or memory used. Guess I should read my whole inbox before I start to respond. Only memory, see Apache::Resource for CPU as Perrin has already replied to you ;) Thanks, Earl -Original Message- From: Stas Bekman

Re: Apache::DB patch

2002-03-04 Thread Stas Bekman
Enrico Sorcinelli wrote: On Fri, 01 Mar 2002 11:16:15 +0800 Stas Bekman [EMAIL PROTECTED] wrote: Enrico Sorcinelli wrote: Hi all, I started to use Apache::DB (0.06) to interactively debug under mod_perl using ptkdb. I see that is necessary to modify Apache/DB.pm but, after this, the

mod_perl training companies?

2002-03-04 Thread Stas Bekman
I'm compiling a list of companies giving mod_perl training for our new mod_perl site. Currently I have only: http://training.gbdirect.co.uk/courses/linux/customized_and_bespoke.html If you know of other companies please send me the URL of the page advertising the mod_perl courses. Thanks.

Re: Blank pages

2002-03-04 Thread max . calvo
Ged Haywood writes: Hi there, On Fri, 1 Mar 2002, Axel Andersson wrote: I run a mod_perl/mysql site, which works fine most of the time. Some pages, however, come out completely blank. Reload.. and hey presto, [snip] Well, it's a longshot, but thanks anyway. Another long shot, do

RE: mod_perl training companies?

2002-03-04 Thread Wilant, Michelle
Title: RE: mod_perl training companies? On that note, does anyone have any reviews of gbdirect.co.uk? Would you recommend them as trainers? Has anyone had courses from them before? Thanks, Michelle -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday, March

Problem installing Apache::Request

2002-03-04 Thread Corey Holzer
I got this email address from the README file in libapreq-10targz and I desperately need help to fix a problem that I am having when I try to install Apache::Request I have sucessfully installed all the mod_perl components, but, every time I try to install Apache::Request I get the following

RE: cvs commit: modperl/eg README httpd.conf.pl perl_sections.txt perl_sections_2.txt perlio.pl registry.pl startup.pl test.pl

2002-03-04 Thread Geoffrey Young
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 02, 2002 12:38 AM To: [EMAIL PROTECTED] Subject: cvs commit: modperl/eg README httpd.conf.pl perl_sections.txt perl_sections_2.txt perlio.pl registry.pl startup.pl test.pl ask