How to pass parameters from the UNIX command line ?

2003-08-14 Thread Fabián R. Breschi
Dear List, It seems a silly one, anyway I'm somewhat confused about how to pass parameters from the UNIX command line: Suppose I have my working PERL script and passed parameter on an URL as: http://server.domain.com/cgi-bin/MyProcedure.pl?cust_id=x I'd like to make a cron job to source

Mod_perl how to include the result of mod_autoindex?

2003-08-14 Thread Coexec
I am writing a mod_perl script using CGI.pm and Apache 1.3.28/Linux. I am trying to figure out how to use Apache's mod_autoindex to display a directories contents within the output the CGI. Apache is configured correctly, I am not asking for Apache help. The end user will submit a form. One

Re: How to restart the root server from within modperl?

2003-08-14 Thread Frank Maas
On Tue, Aug 12, 2003 at 11:50:01AM +0200, Dirk Lutzebaeck wrote: Dennis Stout writes: On a whim, I would try writing a second script to do the actual shutdown and restart of Apache. Then have your mod_perl program either run it in the background (with a ) or fork it into another

Re: Q: How do I upgrade Perl w/mod_perl?

2003-08-14 Thread Stas Bekman
Tim Howell wrote: I'm currently using mod_perl 1.2.7 with Perl 5.8.0. If I want to test Perl 5.8.1 RC4, how do I recompile Perl and mod_perl without having to make other changes? Is there a simple way to do this upgrade? http://perl.apache.org/docs/1.0/guide/install.html

Re: [Slightly OT] Port forwarding (Was: How to restart the rootserverfrom within modperl?)

2003-08-14 Thread greg
When moving a server from MN to VA I used port forwarding to make the transition totally seamless. This includes DNS. I wanted to make sure all my services worked in both places, and I didn't want to have split systems. That would have been a nightmare for services like e-mail where a message to

Re: How to restart the root server from within modperl?

2003-08-14 Thread Dirk Lutzebaeck
Martin Langhoff writes: how can I restart the root httpd server from within modperl? Use `at` to schedule it a minute in the future -- effectively forking it. Yes, also thought of that but the smallest unit of 'at' is minutes and I want to restart the server immediately. Note

Re: Mod_perl how to include the result of mod_autoindex?

2003-08-14 Thread Slava Bizyayev
and Apache 1.3.28/Linux. I am trying to figure out how to use Apache's mod_autoindex to display a directories contents within the output the CGI. Apache is configured correctly, I am not asking for Apache help. This is not possible using Apache 1.3. What you want to do is called

RE: How to restart the root server from within modperl?

2003-08-14 Thread Egor Shipovalov
. -Original Message- From: Dirk Lutzebaeck [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 1:17 To: [EMAIL PROTECTED] Subject: How to restart the root server from within modperl? Hi, how can I restart the root httpd server from within modperl? My problem

Re: How to restart the root server from within modperl?

2003-08-14 Thread Torsten Foertsch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 12 August 2003 11:50, Dirk Lutzebaeck wrote: Dennis Stout writes: On a whim, I would try writing a second script to do the actual shutdown and restart of Apache. Then have your mod_perl program either run it in the background

[Slightly OT] Port forwarding (Was: How to restart the root serverfrom within modperl?)

2003-08-14 Thread Andrew Ho
Hello, MLIf you absolutely need to be in port 80, either setup a simple MLlightweight apache on port 80 as a reverse proxy (see the mod_perl MLguide) or, even simpler, do some port forwarding from port 80 to your MLhigh port of choice. Has anybody had very good experiences using a simple port

Re: How to restart the root server from within modperl?

2003-08-14 Thread Dirk Lutzebaeck
Thanks, I made it a bit more simple: use POSIX; if (! fork) { # child setsid; POSIX::close(0); POSIX::close(1); exec(restart-apache-command); } Works great! Thanks, Dirk Torsten Foertsch writes: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday

RE: How to restart the root server from within modperl?

2003-08-14 Thread Egor Shipovalov
Can I call something like a reload of httpd.conf? This is what sending a SIGHUP to Apache does. However, both mod_perl-enabled servers I run misbehave on this, so I always do a full restart. Egor.

Re: How to restart the root server from within modperl?

2003-08-14 Thread Martin Langhoff
how can I restart the root httpd server from within modperl? Use `at` to schedule it a minute in the future -- effectively forking it. Note that normally apache starts as root and runs as an unprivileged user. If this is the case you _can_ achieve it using a suid wrapper or sudo, but you'll

Re: [Slightly OT] Port forwarding (Was: How to restart the root serverfrom within modperl?)

2003-08-14 Thread Craig Edwards
Hi, I once saw an example of port forwarding using netcat and inetd, i think it involved setting up a listening netcat as the application, using inetd to bind it to a specific port and then forwarding the connection onwards to the ip and/or port where you want it to go, something like this:

How to restart the root server from within modperl?

2003-08-14 Thread Dirk Lutzebaeck
Hi, how can I restart the root httpd server from within modperl? My problem is that when I call system() with say apachectl restart the father process is stopped killing the children including the apachectl itself. So it can't start of again. Can I call something like a reload of httpd.conf

RE: How to restart the root server from within modperl?

2003-08-14 Thread Egor Shipovalov
[mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 1:17 To: [EMAIL PROTECTED] Subject: How to restart the root server from within modperl? Hi, how can I restart the root httpd server from within modperl? My problem is that when I call system() with say apachectl restart the father

Re: How to restart the root server from within modperl?

2003-08-14 Thread Dirk Lutzebaeck
Dennis Stout writes: On a whim, I would try writing a second script to do the actual shutdown and restart of Apache. Then have your mod_perl program either run it in the background (with a ) or fork it into another process. Did exactly that but is has the effect that when the parent

Re: Mod_perl how to include the result of mod_autoindex?

2003-08-14 Thread Geoffrey Young
with Apache 1.3? I'd realy like to hear about it... mod_gzip apparently does this, though I've never evaluated the code or how they do it. http://www.schroepl.net/projekte/mod_gzip/ which is why I generally say filtering content is impossible in 1.3 (well, really, really hard) --Geoff

Re: Mod_perl how to include the result of mod_autoindex?

2003-08-14 Thread Thomas Klausner
Hi! On Mon, Aug 11, 2003 at 04:37:45 -0500, Slava Bizyayev wrote: It's not quite the truth... You can do all that staff on Apache 1.3 with appropriate skills. See LWP for example. If you mean to grab the output of e.g. mod_autoindex by issueing a sperate request using LWP, that's definitly

Re: Mod_perl how to include the result of mod_autoindex?

2003-08-12 Thread Christopher Grau
On Mon, Aug 11, 2003 at 08:37:19AM -0700, Coexec wrote: The end user will submit a form. One of the values in that form will be a path on the local web server. So in the return of the CGI, I want to include the results of Apache's autoindex. I cannot figure out how to do it. If I could

Re[2]: How to restart the root server from within modperl?

2003-08-12 Thread Mike P. Mikhailov
Hello Dirk Lutzebaeck, Tuesday, August 12, 2003, 3:50:01 PM, you wrote: DL Dennis Stout writes: DL On a whim, I would try writing a second script to do the actual shutdown and DL restart of Apache. DL DL Then have your mod_perl program either run it in the background (with a ) or DL

Q: How do I upgrade Perl w/mod_perl?

2003-08-11 Thread Tim Howell
Title: Q: How do I upgrade Perl w/mod_perl? I'm currently using mod_perl 1.2.7 with Perl 5.8.0. If I want to test Perl 5.8.1 RC4, how do I recompile Perl and mod_perl without having to make other changes? Is there a simple way to do this upgrade? Thanks! =) --TWH

Re: Mod_perl how to include the result of mod_autoindex?

2003-08-11 Thread Thomas Klausner
Hi! On Mon, Aug 11, 2003 at 08:37:19AM -0700, Coexec wrote: I am writing a mod_perl script using CGI.pm and Apache 1.3.28/Linux. I am trying to figure out how to use Apache's mod_autoindex to display a directories contents within the output the CGI. Apache is configured correctly, I am

Re: How to pass parameters from the UNIX command line ?

2003-08-09 Thread Jean-Sebastien Guay
http://server.domain.com/cgi-bin/MyProcedure.pl?cust_id=x I'd like to make a cron job to source the above PERL script as from the command line to resemble something like: perl /usr/local/apache/cgi-bin/MyProcedure.plneed to pass the parameter here as cust_id=x [...] Or use GET

RE: How to pass parameters from the UNIX command line ?

2003-08-08 Thread Frank Maas
http://server.domain.com/cgi-bin/MyProcedure.pl?cust_id=x I'd like to make a cron job to source the above PERL script as from the command line to resemble something like: perl /usr/local/apache/cgi-bin/MyProcedure.plneed to pass the parameter here as cust_id=x I am very doubtful

how to extend CPAN module?

2003-07-24 Thread ???? ????????
Hi, How to correctly extend CPAN module, perldoc only explains how to create CPAN module from scratch, but what about extending? I want to add some Foo::My.pm to existing Foo bundle. Which Makefile.PLs should patched? all? just one in subsdirectory 'mod'? Any link? Thx! -vlad

Re: how to extend CPAN module?

2003-07-24 Thread Stas Bekman
wrote: Hi, How to correctly extend CPAN module, perldoc only explains how to create CPAN module from scratch, but what about extending? I want to add some Foo::My.pm to existing Foo bundle. Which Makefile.PLs should patched? all? just one in subsdirectory 'mod'? Any link? Please

Re: How do I have a PerlAuthenHandler not popup the login box?

2003-07-18 Thread Thomas Klausner
Hi! On Thu, Jul 17, 2003 at 06:07:48PM -0700, Jason Fong wrote: I'm making a login system that uses a web form instead of the browser's popup box to input the username/password. My problem is that when I use my authentication script as a PerlAuthenHandler in the .htaccess, it insists on

Re: How to share subroutine

2003-07-17 Thread Thomas Klausner
:Hi! On Wed, Jul 16, 2003 at 10:46:27PM +0100, Ged Haywood wrote: Hi there, On Wed, 16 Jul 2003, Matthew Wu wrote: I put all my subroutine in file.pm, what I need to do such that it can be used by my program? I don't what location I need to put it in and what kind of configuration

How do I have a PerlAuthenHandler not popup the login box?

2003-07-17 Thread Jason Fong
I'm making a login system that uses a web form instead of the browser's popup box to input the username/password. My problem is that when I use my authentication script as a PerlAuthenHandler in the .htaccess, it insists on having the browser show the popup username/password box. I tried making

Re: How do I have a PerlAuthenHandler not popup the login box?

2003-07-17 Thread Keith Keller
the browser show the popup username/password box. Well, that's not really a problem--it's how a PerlAuthenHandler, or any Apache-based authentication handler, is supposed to work. If you're using a web form to authenticate users, you don't need Apache or mod_perl to also authenticate. My guess

How do you set vars via interactive startup?

2003-07-16 Thread Patrick Galbraith
Hi there, I'm trying to figure out how one would set vars via a startup.pl script or using PerlSections. I want to set a var on startup where I'll be prompted and a var that I can retrieve via $r-dir_config('FOO') will get me that value. I've tried endless ideas, none of which are working

Re: How do you set vars via interactive startup?

2003-07-16 Thread Perrin Harkins
On Wed, 2003-07-16 at 17:39, Patrick Galbraith wrote: I'm trying to figure out how one would set vars via a startup.pl script or using PerlSections. Is there a reason you can't just put it in a global? The dir_config() stuff is really for when you want to config something specific

How to share subroutine

2003-07-16 Thread Matthew Wu
Hi: I put all my subroutine in file.pm, what I need to do such that it can be used by my program? I don't what location I need to put it in and what kind of configuration I need to modify. I am running Redhat 6.3. Thanks. Matthew Wu School Loans Corp. 10780 Santa Monica Blvd, Ste 225 Los

Re: How do you set vars via interactive startup?

2003-07-16 Thread Patrick Galbraith
Yes, if I hardcode it, fine, but not via reading STDIN into a var, and then setting whatever to that var. On 16 Jul 2003, Perrin Harkins wrote: On Wed, 2003-07-16 at 17:39, Patrick Galbraith wrote: I'm trying to figure out how one would set vars via a startup.pl script or using

Re: Socket-based porotocol module: how to re-use connection?

2003-07-14 Thread Stas Bekman
, LocalPort = 8899, ReuseAddr = 1, Proto = tcp, Listen= 200 ) How is this implemented http in mod_perl via Apache2 without using http? Any suggestions? it's not implemented in mod_perl

Re: Books - was How practical is that Practical mod_perl?

2003-07-14 Thread Stas Bekman
perl books. The system is being enhanced to make it easier to submit, find, and link to book reviews. (And yes - new development is being done in perl) Any feedback on how what sort of book reviews you like, and what you find uesful is welcome. This site seems to be offline. In any case if it's

How big are your Apache kids?

2003-06-30 Thread Nigel Hamilton
20240 ? S14:27 0:01 [httpd] apache 30571 0.6 1.8 22056 18572 ? S14:28 0:00 [httpd] apache 30578 0.8 1.7 21736 18284 ? S14:28 0:00 [httpd] Now I'm wondering how much more RAM I can save? Does anyone have a really lean and mean mod_perl, Apache

Re: How big are your Apache kids?

2003-06-30 Thread Ged Haywood
Hi there, On Mon, 30 Jun 2003, Nigel Hamilton wrote: I recently managed to get the RAM consumption of my server under control. :) Does anyone have a really lean and mean mod_perl, Apache configuration On the face of it 20Mb looks a bit heavy for mod_perl processes. But it depends so much

Re: How big are your Apache kids?

2003-06-30 Thread Perrin Harkins
On Mon, 2003-06-30 at 15:44, Nigel Hamilton wrote: Now I'm wondering how much more RAM I can save? The only thing you need to be concerned about is the amount of unshared memory in each process. If you don't know what I mean, read the tuning section in the docs. This is also covered

Re: Books - was How practical is that Practical mod_perl?

2003-06-21 Thread Alex McLintock
is being enhanced to make it easier to submit, find, and link to book reviews. (And yes - new development is being done in perl) Any feedback on how what sort of book reviews you like, and what you find uesful is welcome. Alex

Socket-based porotocol module: how to re-use connection?

2003-06-19 Thread Jie Gao
= 8899, ReuseAddr = 1, Proto = tcp, Listen= 200 ) How is this implemented http in mod_perl via Apache2 without using http? Any suggestions? Regards, Jie

mod_perl 2 and file upload how-to

2003-06-18 Thread Alejandro Galue
Hello, I need help in file uploading with mod_perl 2. Apache::Request is not compatible with mod_perl 2, and I want to know how can I upload file widthout using CGI.pm Please send me an example if possible. Thanks, Alejandro.

Re: mod_perl 2 and file upload how-to

2003-06-18 Thread Stas Bekman
Alejandro Galue wrote: Hello, I need help in file uploading with mod_perl 2. Apache::Request is not compatible with mod_perl 2, and I want to know how can I upload file widthout using CGI.pm Please send me an example if possible. Simply copy the relevant code from CGI.pm. Alternatively if you

Re: How practical is that Practical mod_perl?

2003-06-17 Thread Slava Bizyayev
From this point the discussion is switched to the thread Content compressed FAQ. See you there! Thanks, Slava - Original Message - From: Perrin Harkins [EMAIL PROTECTED] To: Slava Bizyayev [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, June 13, 2003 10:20 AM Subject: Re: How

Re: How practical is that Practical mod_perl?

2003-06-17 Thread Slava Bizyayev
, 2003 3:11 AM Subject: Re: How practical is that Practical mod_perl? Slava, In my understanding you would better rewrite p.401-402 from the scratch for the next edition (which is not supposed to happen very soon, isn't it?). Otherwise, you will have to rewrite Apache::GzipChain appropriately

Re: How practical is that Practical mod_perl?

2003-06-17 Thread Slava Bizyayev
PROTECTED] Sent: Saturday, June 14, 2003 9:28 AM Subject: Re: How practical is that Practical mod_perl? Stas Bekman wrote: Slava, [chomp] I think it's a time to start a new thread on how to improve: http://perl.apache.org/docs/tutorials/client/compression/compression.html For starters

Re: How practical is that Practical mod_perl?

2003-06-17 Thread Slava Bizyayev
From this point the discussion is switched to the thread Content compressed FAQ. See you there! Thanks, Slava - Original Message - From: David Dick [EMAIL PROTECTED] To: Slava Bizyayev [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, June 14, 2003 5:20 PM Subject: Re: How

Re: how to unsubscribe from this list

2003-06-17 Thread Stas Bekman
Jordan Ward wrote: Can someone please direct me to where I can unsubscribe from this list. it's in the mail headers: list-help: mailto:[EMAIL PROTECTED] list-unsubscribe: mailto:[EMAIL PROTECTED] list-post: mailto:[EMAIL PROTECTED] --

Re: How practical is that Practical mod_perl?

2003-06-16 Thread Eric Cholet
Stas Bekman wrote: [...] BTW, Eric is working on creating a new site for http://modperlbook.org/ which will include the source code, errata and other useful information. We will let you know when this work has been completed. I've just put it online. Enjoy, -- Eric Cholet

Re: How practical is that Practical mod_perl?

2003-06-14 Thread Stas Bekman
think it's a time to start a new thread on how to improve: http://perl.apache.org/docs/tutorials/client/compression/compression.html __ Stas BekmanJAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl

Re: How practical is that Practical mod_perl?

2003-06-14 Thread Carl Brewer
Stas Bekman wrote: Slava, [chomp] I think it's a time to start a new thread on how to improve: http://perl.apache.org/docs/tutorials/client/compression/compression.html For starters, apache2/mp2 coverage. As I understand it, and my logs seem to indicate, mod_deflate compresses everything

Re: How practical is that Practical mod_perl?

2003-06-14 Thread Slava Bizyayev
From: Ged Haywood [EMAIL PROTECTED] Sent: Friday, June 13, 2003 6:30 AM Subject: Re: How practical is that Practical mod_perl? It is unrealistic (and perhaps a little Oriental?) to refuse to accept that we make mistakes, and that we will continue to make them. It is far more constructive

Re: How practical is that Practical mod_perl?

2003-06-14 Thread Slava Bizyayev
possible. Thanks, Slava - Original Message - From: David Dick [EMAIL PROTECTED] To: Slava Bizyayev [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, June 13, 2003 6:46 AM Subject: Re: How practical is that Practical mod_perl? ok, i thought you might have been referred to problems

Re: How practical is that Practical mod_perl?

2003-06-14 Thread Ged Haywood
Hi Slava, On Sat, 14 Jun 2003, Slava Bizyayev wrote: So, what it looks like? http://groups.yahoo.com/group/modperl/message/34174 Looks like a moment of truth. Yup. :) 73, Ged.

Re: How practical is that Practical mod_perl?

2003-06-14 Thread David Dick
with deflate when possible. Thanks, Slava - Original Message - From: David Dick [EMAIL PROTECTED] To: Slava Bizyayev [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, June 13, 2003 6:46 AM Subject: Re: How practical is that Practical mod_perl? ok, i thought you might have been referred

Re: How practical is that Practical mod_perl?

2003-06-13 Thread Slava Bizyayev
of mod_perl if/when being introduced appropriately... Yes, I know that content compression is not in that common use to date, and I know why. Even more - I know how to fix the situation. That was why I came up here with my Apache::Dynagzip. It is really work horse: universal, flexible, and easy

Re: How practical is that Practical mod_perl?

2003-06-13 Thread Slava Bizyayev
PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, June 12, 2003 4:41 PM Subject: Re: How practical is that Practical mod_perl? The direct implementation of the example configuration p.402 is supposed to lead you to about 15% of unsatisfied clients recently. Can we have some more information

Re: How practical is that Practical mod_perl?

2003-06-13 Thread Slava Bizyayev
in that work. Just let me know. I will be waiting around. Thanks, Slava - Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Perrin Harkins [EMAIL PROTECTED] Cc: Slava Bizyayev [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, June 12, 2003 6:56 PM Subject: Re: How practical

Re: How practical is that Practical mod_perl?

2003-06-13 Thread Ged Haywood
Hi all, On Fri, 13 Jun 2003, Slava Bizyayev wrote: We should together refrain from doing mistakes (at least publicly). It is unrealistic (and perhaps a little Oriental?) to refuse to accept that we make mistakes, and that we will continue to make them. It is far more constructive to prepare

Re: How practical is that Practical mod_perl?

2003-06-13 Thread David Dick
customers still include 17% Netscape 4 users, sigh ... # Thanks, Slava - Original Message - From: David Dick [EMAIL PROTECTED] To: Slava Bizyayev [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, June 12, 2003 4:41 PM Subject: Re: How practical is that Practical mod_perl

Re: How practical is that Practical mod_perl?

2003-06-13 Thread Perrin Harkins
On Fri, 2003-06-13 at 03:46, Slava Bizyayev wrote: Every good book about mod_perl achievements can result in better contracts for each of us and can bring aboard new talented contributors. A bad book can damage/destroy public interest and finally can kill this technology. There are many bad

Re: How practical is that Practical mod_perl?

2003-06-13 Thread Fco. Valladolid
It arrived, today. (Practical mod_perl ) My first impression was ...!, this is a Fat Book!!! while I browse the book, I found some chapters importants. I believe that all know to Stas Bekman for your contributions to mod_perl documentation and tests, this is a good book, and I hope to discuss

How practical is that Practical mod_perl?

2003-06-12 Thread Slava Bizyayev
Yesterday I've finally received a long-waiting book (http://www.modperlbook.org/) written by Stas Bekman and Eric Cholet. In fact, I don't know who is that Eric Cholet, but the presence of the name of Stas Bekman was enough in my case to decide, how important the book is supposed to be for me

Re: How practical is that Practical mod_perl?

2003-06-12 Thread Perrin Harkins
. The direct implementation of the example configuration p.402 is supposed to lead you to about 15% of unsatisfied clients recently. BTW, it would be curious to see HTTP client logs from Apache::GzipChain over HTTP/1.0 and HTTP/1.1 for dynamically generated and partially flushed content. And how about

Re: Books - was How practical is that Practical mod_perl?

2003-06-12 Thread Gedanken
speaking of mod perl books, i have gotten lost somewhere. theres the eagle book, theres stas' book (practical mod_perl i learned today), and theres 'geoffs book'. what is the name of geoffs book please? i wanna have all 3 after reading the reviews yet geoffs last name is escaping me. --

Re: Books - was How practical is that Practical mod_perl?

2003-06-12 Thread Perrin Harkins
On Thu, 2003-06-12 at 17:31, Gedanken wrote: speaking of mod perl books, i have gotten lost somewhere. theres the eagle book, theres stas' book (practical mod_perl i learned today), and theres 'geoffs book'. what is the name of geoffs book please? It's mod_perl Developer's Cookbook. You

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Perrin Harkins
On Thu, 2003-06-05 at 03:35, Dennis G. Allard wrote: (BTW, my more general goal is to have shared memory across multiple Apache threads as part of implementing sessions so that I can avoid doing a database write at every HTTP request just to save session IDs.) Hmmm, save session IDs? Why

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Perrin Harkins
On Thu, 2003-06-05 at 15:55, Dennis G. Allard wrote: MySQL ShmySQL. A database that didn't have transactions until last year and still has no stored procedures Uh, we're talking about session data here, right? Basically a remotely accessible hash? Stored procedures have no place there, and

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
Hmmm. No one has actually answered the question, although I am getting all kinds of advice... (-; ... On Thu, 2003-06-05 at 01:42, Stas Bekman wrote: Thomas Klausner wrote: Hi! On Don, Jun 05, 2003 at 12:35:37 -0700, Dennis G. Allard wrote: I am running Red Hat 8.0,

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Thomas Klausner
Hi! On Thu, Jun 05, 2003 at 01:37:59PM -0700, Dennis G. Allard wrote: Please note, though, one of my goals in life is to rely on my software providers to do the work of providing me with a stable, tested, updatable OS and associated tools. If I download 'out of band' updates, then I can no

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
On Thu, 2003-06-05 at 13:08, Perrin Harkins wrote: On Thu, 2003-06-05 at 15:55, Dennis G. Allard wrote: MySQL ShmySQL. A database that didn't have transactions until last year and still has no stored procedures Uh, we're talking about session data here, right? Basically ... My point

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
On Thu, 2003-06-05 at 13:37, Thomas Klausner wrote: Hi! On Thu, Jun 05, 2003 at 01:37:59PM -0700, Dennis G. Allard wrote: [In reply to Stas] Please note, though, one of my goals in life is to rely on my software providers to do the work of providing me with a stable, tested,

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Thomas Klausner
Hi! On Thu, Jun 05, 2003 at 01:56:58PM -0700, Dennis G. Allard wrote: You don't need perl-blead (which is probably Stas' install of the latest unstable Perl version) This will do the same job: % perl -Mmod-perl -le 'print mod_perl-VERSION' Bummmer, that does not work either for me

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Perrin Harkins
On Thu, 2003-06-05 at 16:37, Dennis G. Allard wrote: Hmmm. No one has actually answered the question, although I am getting all kinds of advice... (-; ... Thomas Klausner said that mod_perl 2 only runs on apache 2 and mod_perl 1 only runs on apache 1. He is correct. Red Hat gave you an

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
On Thu, 2003-06-05 at 13:53, Thomas Klausner wrote: Sorry, typo: it should say -Mmod_perl instead of -Mmod-perl, i.e.: % perl -Mmod_perl -le 'print mod_perl-VERSION' THANKS! (I should have caught that one myself, for crying out loud). For the sake of completeness: [EMAIL PROTECTED] root]#

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Ged Haywood
Hi there, On 5 Jun 2003, Dennis G. Allard wrote: Hmmm. No one has actually answered the question, although I am getting all kinds of advice... (-; ... It's been good advice. If the question to which you refer is the one in the subject line, then one answer is look in the error log. Apache

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
-- resuming normal operations I spent some time scrounging the Apache Web site and can't find any documentation on how to show what DSOs (Dynamic Shared Objects, aka Apache modules) are loaded. Google groups shows some other people having this question. For Apache 1.0, one can inspect

Re: [mp2] How do I find Documentation on . . .

2003-06-06 Thread Jack Nerad
Stas Bekman wrote: [snip] Fantastic. We really need volunteers to help with the docs (at least manpages). The infrastructure is all there. We use pod and everything gets glued together by DocSet. You can find more info here: http://perl.apache.org/download/docs.html Okay. there are a few

[mp2] Newbie: How to get CGI params using mp2?

2003-06-06 Thread Jack Nerad
How the heck do you get the parameters from a request? I don't see any methods that look right. I'd expect them to be on Apache::RequestRec, but I can't see anything that is close to matching my idea of what it should be named. Help? -- Jack Nerad

How tell what version of mod_perl is installed?

2003-06-05 Thread Dennis G. Allard
, as in, do I even have it on my system yet! I am running Red Hat 8.0, Apache/2.0.40. How do I tell if mod_perl 1.0 or mod_perl 2.0 is installed (or, at least, that the .so is the .so for mod_perl 2.0)? Some facts about my system that may help answer this question are provided below... [EMAIL PROTECTED

Re: How tell what version of mod_perl is installed?

2003-06-05 Thread Stas Bekman
Thomas Klausner wrote: Hi! On Don, Jun 05, 2003 at 12:35:37 -0700, Dennis G. Allard wrote: I am running Red Hat 8.0, Apache/2.0.40. AFAIK, mod_perl 1.x won't run with Apache 2.0, so I'm quite sure you're running mod_perl 2 (which comes shipped with Red Hat 8) But Dennis, you don't want the

Re: [mp2] How do I find Documentation on . . .

2003-06-05 Thread Stas Bekman
somebody I can pester for information, I'll put together some documentation. I'm familiar with LaTeX, TeXInfo, perldoc, and I think I can figure out how to use DocBook, if you'd rather use that. I'm also a sold Perl programmer (though not of the same caliber as the m_pH's) so if there's any

[mp2] How do I find Documentation on . . .

2003-06-05 Thread Jack Nerad
-status, $r-bytes_sent; ... I don't mean this question to be specifically about RequestRec, but rather am seeking to find out how to find the structure of Apache/mod_perl creatures in general. (Yes, I even can read c if that's were the documentation lies). Aloha = Beau.

Re: [mp2] How do I find Documentation on . . .

2003-06-05 Thread Stas Bekman
Jack Nerad wrote: From December 2002. I saw no response to this message. Have things stabilized enough yet that there is documentation for these things? There is a dynamic tool helping to figure out what's available: http://perl.apache.org/docs/2.0/api/ModPerl/MethodLookup.html The real

Re: how to make sure code wasn't changed

2003-05-31 Thread Patrick Mulvany
On Thu, May 29, 2003 at 06:02:10PM -0700, Mike Zelina wrote: Here's my question: has anyone setup a clever way, possibly using CRC/MD5 analysis, to check to make sure code hasn't been changed? I don't care if someone steals it or gives it to their friends, but I don't want the code to yield

Re: how to make sure code wasn't changed

2003-05-31 Thread Randal L. Schwartz
Mike == Mike Zelina [EMAIL PROTECTED] writes: Mike Here's my question: has anyone setup a clever way, possibly Mike using CRC/MD5 analysis, to check to make sure code hasn't been Mike changed? I don't care if someone steals it or gives it to their Mike friends, but I don't want the code to

how to secure perl modules?

2003-05-30 Thread Kirk Rogers
i have a collection of perl modules (running under the mod_perl umbrella) and would like to distribute the application to several different sources (clients with open internet web servers). but i dont want to send it out without at least making it somewhat difficult for some hacker to just simply

Re: how to secure perl modules?

2003-05-30 Thread John Saylor
and how do you know it won't be a script kiddie, or middle manager, or someone just like you [but a little less experienced] that 'steals' it? any suggestions would be appreciated license it under GPL and count it as a donation to the good of the species. or, if you're more self-directed, a step

RE: how to secure perl modules?

2003-05-30 Thread Kirk Rogers
why the scarcasm? -Original Message- From: John Saylor [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 2:34 PM To: [EMAIL PROTECTED] Cc: modperl Subject: Re: how to secure perl modules? hi ( 03.05.29 14:25 -0700 ) Kirk Rogers: but i dont want to send it out without at least

Re: how to secure perl modules?

2003-05-30 Thread David Dick
a different method of solving it. the other question that is useful to ask is how many days of effort will be required to secure your program and compare that with how much your clients would value that amount of time being used in development of new features instead? uru -Dave Kirk Rogers wrote: i

RE: how to secure perl modules?

2003-05-30 Thread Perrin Harkins
On Thu, 2003-05-29 at 17:41, Kirk Rogers wrote: why the scarcasm? You asked a very loaded question that is guaranteed to get you a lot angry responses on most Perl mailing lists. Hiding your source code is a FAQ (http://perldoc.com/perl5.8.0/pod/perlfaq3.html#How-can-I-hide-the-source-for-my

Re: how to secure perl modules?

2003-05-30 Thread Ged Haywood
Hi there, On Thu, 29 May 2003, Kirk Rogers wrote: i have a collection of perl modules ... i dont want to send it out without at least making it somewhat difficult for some hacker to just simply steal it and load it somewhere else without my consent. This is getting to be an old chestnut, I

how to make sure code wasn't changed

2003-05-30 Thread Mike Zelina
OK... I have a system I've developed for a client that is now on a central server. They would like me to make changes so it can be installed on the laptops of users to use off site if necessary. Here's my question: has anyone setup a clever way, possibly using CRC/MD5 analysis, to check to

how to secure perl modules?

2003-05-30 Thread iCap
i have a collection of perl modules (running under the mod_perl umbrella) and would like to distribute the application to several different sources (clients with open internet web servers). but i dont want to send it out without at least making it somewhat difficult for some hacker to just simply

Re: how to secure perl modules?

2003-05-30 Thread Thomas Klausner
Hi! On Thu, May 29, 2003 at 10:27:54AM -0700, iCap wrote: i have a collection of perl modules (running under the mod_perl umbrella) and would like to distribute the application to several different sources (clients with open internet web servers). but i dont want to send it out without at

Re: how to secure perl modules?

2003-05-30 Thread Martin Moss
how to do this for ages anyay, I realise it's not completely foolproof, but I'm trying to find a mechanism that would stop anybody but a perl litterate hacker from getting at my code. Marty - Original Message - From: Thomas Klausner [EMAIL PROTECTED] To: modperl [EMAIL PROTECTED] Sent

RE: how to secure perl modules?

2003-05-30 Thread wsheldah
really make sense, but the errors went away when I stopped using Switch. Wes Perrin Harkins [EMAIL PROTECTED] on 05/29/2003 05:56:05 PM To:[EMAIL PROTECTED] cc:John Saylor [EMAIL PROTECTED], modperl [EMAIL PROTECTED] Subject:RE: how to secure perl modules? On Thu, 2003-05

[OT] Perfomance tests, How?

2003-04-02 Thread Ruslan U. Zakirov
Hello All! I need to test my project perfomance. Is there any OpenSource projects like WebBench and other in the Internet? Best regards. Ruslan.

AW: [OT] Perfomance tests, How?

2003-04-02 Thread Denis Banovic
:[EMAIL PROTECTED] ---[ Mühlstrasse 4a AT - 5023 Salzburg Tel. 0662 / 644 688 ---[ Fax: 0662 / 644 688 - 88 -Ursprüngliche Nachricht- Von: Ruslan U. Zakirov [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 2. April 2003 14:54 An: mod_perl list Betreff: [OT] Perfomance tests, How

  1   2   3   4   5   6   7   >