Help me understand mod_perl and Environment settings

2003-07-17 Thread Bernhard Donaubauer
Hello! I just startet learning mod_perl and apache. I use the current version of mod_perl 1 and apache 1.3. Perl itself has version 6.5.1. My aim ist to set some environment variables visible to all apache/perl children (as far as I unsterstand there is one perl instance for each apache

Re: Help me understand mod_perl and Environment settings

2003-07-17 Thread Mike P. Mikhailov
Hello Bernhard Donaubauer, Thursday, July 17, 2003, 5:34:57 PM, you wrote: BD Hello! BD I just startet learning mod_perl and apache. I use the current version of BD mod_perl 1 and apache 1.3. Perl itself has version 6.5.1. BD My aim ist to set some environment variables visible to all

Re: Help me understand mod_perl and Environment settings

2003-07-17 Thread Ged Haywood
Hi there, On Thu, 17 Jul 2003, Bernhard Donaubauer wrote: I just startet learning mod_perl and apache. I use the current version of mod_perl 1 and apache 1.3. Perl itself has version 6.5.1. Can you be a little more careful with your version numbers in future? but my testapplication does

Help-me

2003-02-12 Thread Rangel, Luciano
Hi. Please help-me with error. waiting for server to start: .[Wed Feb 12 14:56:58 2003] [info] 20 Apache:: modules loaded [Wed Feb 12 14:56:58 2003] [info] 5 APR:: modules loaded [Wed Feb 12 14:56:58 2003] [info] base server + 5 vhosts ready to run tests

Re: Help-me

2003-02-12 Thread Ged Haywood
Hello there, On Wed, 12 Feb 2003, Rangel, Luciano wrote: Please help-me with error. waiting for server to start: .[Wed Feb 12 14:56:58 2003] [info] 20 Apache:: modules loaded [Wed Feb 12 14:56:58 2003] [info] 5 APR:: modules loaded [Wed Feb 12 14:56:58 2003] [info] base server + 5

please help me.

2002-06-03 Thread Tran Van Quan
Dear Mr/Mrs. Please help me I have trouble with perl configuration in apache config file (httpd.conf) I had install ActivePerl-5.6.1.631-MSWin32-x86 and my computer's win2k. Please help me how to config in order I can run perl page. Your help will be appreciated. Thanks you very much. ps: please

Re: please help me.

2002-06-03 Thread pascal barbedor
are running modperl there should a loadmodule perlmodule... somewhere pascal - Original Message - From: Tran Van Quan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 03, 2002 10:54 AM Subject: please help me. Dear Mr/Mrs. Please help me I have trouble with perl configuration

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-05-05 Thread Jason Woodward
You'll also need to use a PerlPassEnv directive prior to your Perl block. For debug purposes, try adding the following inside your Perl block: print join(\n, map { $_ = $ENV{$_} } (keys %ENV)), \n; OR, my personal quick-debugging catch-all: use Data::Dumper; print Dumper \%ENV; You'll be

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-05-03 Thread Fran Fabrizio
What I was really looking for was $r-server_root_relative. =) Thanks Geoff! That's to all for your help. -Fran You'll also need to use a PerlPassEnv directive prior to your Perl block. For debug purposes, try adding the following inside your Perl block: print join(\n, map { $_ =

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-05-02 Thread Ken Williams
On Wednesday, May 1, 2002, at 05:04 AM, Fran Fabrizio wrote: I spoke too soon. I need: Perl push Alias, [ qw(/cgi-bin/chimpkit/ $ENV{SERVER_ROOT}/cgi- bin/chimpkit/) ]; /Perl This does not appear to be possible because there's no way to pass in SERVER_ROOT to the apache startup.

Can mod_perl help me use ENV variables in httpd.conf?

2002-04-30 Thread Fran Fabrizio
I am trying to make a portable mod_perl.conf. I have things like: Alias /cgi-bin/chimpkit/ /usr/local/apache/cgi-bin/chimpkit/ Location /cgi-bin/chimpkit/ SetHandler perl-script PerlHandler Apache::Registry Options +ExecCGI PerlSendHeader On /Location which really needs

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-04-30 Thread Steven Lembark
Yup. See the perl directive. Good description of how it works in the Eagle Book. -- Fran Fabrizio [EMAIL PROTECTED] I am trying to make a portable mod_perl.conf. I have things like: Alias /cgi-bin/chimpkit/ /usr/local/apache/cgi-bin/chimpkit/ Location /cgi-bin/chimpkit/ SetHandler

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-04-30 Thread Fran Fabrizio
Yikes, I just found an example of the exact thing I needed in the cookbook (recipe 2.16). Sorry, and thanks! -Fran

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-04-30 Thread Fran Fabrizio
I spoke too soon. I need: Perl push Alias, [ qw(/cgi-bin/chimpkit/ $ENV{SERVER_ROOT}/cgi-bin/chimpkit/) ]; /Perl This does not appear to be possible because there's no way to pass in SERVER_ROOT to the apache startup. I have SERVER_ROOT getting set in root's .bashrc, but when I execute

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-04-30 Thread Geoffrey Young
Fran Fabrizio wrote: I spoke too soon. I need: Perl push Alias, [ qw(/cgi-bin/chimpkit/ $ENV{SERVER_ROOT}/cgi-bin/chimpkit/) ]; /Perl This does not appear to be possible because there's no way to pass in SERVER_ROOT to the apache startup. I have SERVER_ROOT getting set in

RE: Help me!

2001-06-29 Thread Webmaster
- Original Message - From: wac [EMAIL PROTECTED] To: mod_perl Maillist [EMAIL PROTECTED] Sent: Wednesday, June 27, 2001 5:48 AM Subject: Help me! Dear All, I want to write a handler, function : log client request file size. My code can't work: Apache Config file Location

Help me ! about Apache sent bytes

2001-06-28 Thread wac
Dear all members: I hava a question, send 0 byte to Client , Apache Server log 5 bytes in Access Log file, send 2 bytes to Client, Apache Server log 14 bytes in Access log file. Why My code is : = my $r = shift; $r-send_http_header;

Help me!

2001-06-27 Thread wac
Dear All, I want to write a handler, function : log client request file size. My code can't work: Apache Config file Location /test/ SetHandler perl-script PerlLogHandler My::Test Options ExecCGI /Location My::Test package My::Test; sub handler { my $r = shift; $r-send_http_header;

Help me , about $r-bytes_sent

2001-06-27 Thread wac
Dear All, I want to write a handler, function : log client request file size. My code can't work: Apache Config file Location /test/ SetHandler perl-script PerlLogHandler My::Test Options ExecCGI /Location My::Test package My::Test; sub handler { my $r = shift; $r-send_http_header;

Help me! about $r-bytes_sent

2001-06-26 Thread wac
Dear all members: I have a question , I want to use mod_perl handler print file sent size. Apache Config file httpd.conf = Alias /test/ D:/test/ Location /test/ SetHandler perl-script PerlHandler My::Test Options ExecCGI /Location

Re: Help me! about $r-bytes_sent

2001-06-26 Thread Stas Bekman
On Tue, 26 Jun 2001, wac wrote: Dear all members: I have a question , I want to use mod_perl handler print file sent size. Apache Config file httpd.conf = Alias /test/ D:/test/ Location /test/ SetHandler perl-script PerlHandler

Help me!

2001-06-25 Thread wac
Dear all members: I have a question , I want to use mod_perl handler print file sent size. Apache Config file httpd.conf = Alias /test/ D:/test/ Location /test/ SetHandler perl-script PerlHandler My::Test Options ExecCGI /Location

Newbie: Please help me in installing mod_perl

2001-06-20 Thread VIDYASAGAR R NALLU
Hi, I'm completely new to mod_perl. So please don't scold me too hard if i'm asking silly question. Basically i installed and configured Apache web server, working fine with out any problem. Now i would like to install mod_perl. According to documentation using ppm i installed ppd file of

Re: Newbie: Please help me in installing mod_perl

2001-06-20 Thread Robin Berjon
On Wednesday 20 June 2001 17:49, VIDYASAGAR R NALLU wrote: According to documentation using ppm i installed ppd file of mod_perl. Successfully copied mod_perl.so into the modules directory of Apache webserver. When i started the server i'm ended up with the following error message: Invalid

Please help me get out of the list

2001-01-11 Thread Assil
It is unbelievable ! Am not able to get out of this list. Unsubscribe emails say:"You are not on the list ..." Please help, please help !!! Assil

Re: Please help me get out of the list

2001-01-11 Thread Peter Farmer
- Original Message - From: "Assil" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 10, 2001 9:24 PM Subject: Please help me get out of the list It is unbelievable ! Am not able to get out of this list. Unsubscribe emails say:"You are not on the list ...&

Help me beat Java.

2000-12-13 Thread jleidigh
. Specifically my question is 1. Is there a way to make mod_perl multi-threaded? 2. Is there a way to lower this memory consumtion? 3. Is there a way to precomplie perl to machine code to better perfomance? They are planning to do the same for Java and may gain performance. Help me beat Java, please

Re: Help me beat Java.

2000-12-13 Thread Stas Bekman
[some intro snipped] and Apache/mod_perl. My main concern is the fact that apache/mod_perl child proccess can be as big as 12 MB. even as big as 12.5MB :) Specifically my question is 1. Is there a way to make mod_perl multi-threaded? http://perl.apache.org/~dougm/modperl_2.0.html

Re: Help me beat Java.

2000-12-13 Thread Nigel Hamilton
I have written a awsome mod_perl module for Apache and now my companie wants to transform it to Java (ik). Nothing personal against java but 95% of the program is regular expressions. Perl is king in this area. In java they are using Oroinc 3rd party classes for the regexs. With some

Re: Help me beat Java.

2000-12-13 Thread Gunther Birznieks
At 10:24 AM 12/13/00 -0300, jleidigh wrote: I have written a awsome mod_perl module for Apache and now my companie wants to transform it to Java (ik). Why would your company want to redevelop something from scratch in another language instead of making use of the product they have now that

Re: Help me beat Java.

2000-12-13 Thread Vivek Khera
"j" == jleidigh [EMAIL PROTECTED] writes: j faster. But now they want to do super tuning and also j compare Resource consumption between JRun/Java Servlets j and Apache/mod_perl. My main concern is the fact that j apache/mod_perl child proccess can be as big as 12 MB. j Specifically my

Re: Help me beat Java.

2000-12-13 Thread G.W. Haywood
Hi all, On Wed, 13 Dec 2000, Vivek Khera wrote: j 3. Is there a way to precomplie perl to machine code to Don't think so, but there could be. There's a Perl to C translator but I don't tink you want to go there. 73, Ged.

Re: Help me beat Java.

2000-12-13 Thread Stas Bekman
On Wed, 13 Dec 2000, G.W. Haywood wrote: Hi all, On Wed, 13 Dec 2000, Vivek Khera wrote: j 3. Is there a way to precomplie perl to machine code to Don't think so, but there could be. There's a Perl to C translator but I don't tink you want to go there. It doesn't make the code

Re: Help me beat Java.

2000-12-13 Thread G.W. Haywood
Hi Stas, On Wed, 13 Dec 2000, Stas Bekman wrote: On Wed, 13 Dec 2000, G.W. Haywood wrote: There's a Perl to C translator but I don't tink you want to go there. It doesn't make the code run faster. It only helps if you want to hide the source code (to make it harder to get to the source

Need mod_Perl developers in Austin, Texas. Contract or Direct Please help me out if you can.

2000-09-07 Thread Kirk Gould
Hello, I need to help a partner organization find mod_Perl developers for an Austin, Texas company, so that they can finish a project for me. Please contact me if you can help out. I don't know if they will need relocation perm or temp, perhaps not for contract. Sincerely, Kirk Kirk J.

Help me to learn...

2000-05-16 Thread Alexei V. Alexandrov
Dear mod_perl users, I`m new to programming using mod_perl just for learning i wrote some simple modules and i want to write a more complex module for solving the following task: There are many .zip files on our server in the web root directory. I want to write a kind of module to

Re: Help me to learn...

2000-05-16 Thread Randy Kobes
On Tue, 16 May 2000, Alexei V. Alexandrov wrote: Dear mod_perl users, I`m new to programming using mod_perl just for learning i wrote some simple modules and i want to write a more complex module for solving the following task: There are many .zip files on our server in the web

mod_perl weaknesses? help me build a case....

2000-04-05 Thread Soulhuntre
Hiya! Ok, we are getting ready to head out on a rather largish project, and it is time to settle on a set of tools. The primary issues: 1) Quick development 2) Ability to migrate easily to/from win2000 servers (Apache/win32 is fine) 3) Minimum arcane traps 4) Minimum destabilization of the

Re: mod_perl weaknesses? help me build a case....

2000-04-05 Thread Joel Reed
On Apr 05, [EMAIL PROTECTED] hacked the bitstream to say... Soulhuntre Hiya! Soulhuntre 1) It is VERY easy to have arcane errors in mod_perl code, and that code is Soulhuntre not as easily debugged as one could hope. While it seems that we can be very Soulhuntre careful with our own code and

Re: mod_perl weaknesses? help me build a case....

2000-04-05 Thread Andrew Wyllie
On Wed, 05 Apr 2000, Soulhuntre wrote: Hiya :) -Original Message- From: Ime Smits [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 05, 2000 6:57 AM To: [EMAIL PROTECTED] Subject: Re: mod_perl weaknesses? help me build a case Just because a lot of errors are openly

Re: mod_perl weaknesses? help me build a case....

2000-04-05 Thread Leslie Mikesell
According to Soulhuntre: Well, let me turn that around, has anyone succeeded in getting mod_perl running well on Apache on win2k? Your problem here is going to be that mod_perl is not thread-safe and will serialize everything when running under the threaded model that apache uses under

mod_perl compat on win32? RE: mod_perl weaknesses? help me build a case....

2000-04-05 Thread Soulhuntre
Hiya :) -Original Message- From: Leslie Mikesell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 05, 2000 1:34 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: mod_perl weaknesses? help me build a case Your problem here is going to be that mod_perl is not thread

Re: mod_perl weaknesses? help me build a case....

2000-04-05 Thread ___cliff rayman___
the bible for doing that is here: http://perl.apache.org/guide/strategy.html#Alternative_architectures_for_ru cliff rayman genwax.com Michael Robinton wrote: if you use it as a back end to a lightweight front-end proxy which a busy site needs anyway. My site is starting to get "busy

RE: mod_perl weaknesses? help me build a case....

2000-04-05 Thread Russell D. Weiss
MR Wrote: My site is starting to get "busy enough". Are there some docs that explain how to to do this. Apache proxy has always seemed unclear to me, my lack of understanding really I've been using standard apache with mod_perl for several years now and have run squid in front of it, but

Re: mod_perl compat on win32? RE: mod_perl weaknesses? help me build a case....

2000-04-05 Thread Gunther Birznieks
Soulhuntre wrote: Hiya :) -Original Message- From: Leslie Mikesell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 05, 2000 1:34 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: mod_perl weaknesses? help me build a case Your problem here is going

help me under those Apache::DBI log info.

2000-01-27 Thread vinecent hong
Hello, while I begin to write some test perl script to test mod_perl after read necessary document,still get folloing error.please correct my error(maybe silly one) Following is my problem while using mod_perl. apache 1.3.3 + mysql 2.22 + RH 6.0 + modperl 1.21 + perl 5.005_3 Modperl build w/

RE: help me under those Apache::DBI log info.

2000-01-27 Thread Geoffrey Young
ings match. HTH --Geoff -Original Message- From: vinecent hong [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 27, 2000 8:22 AM To: [EMAIL PROTECTED] Subject: help me under those Apache::DBI log info. Hello, while I begin to write some test perl script to test mod_

Re: help me under those Apache::DBI log info.

2000-01-27 Thread vinecent hong
Thank you,Geoffrey.What you said about using "the same conenct string" I also read from the perl.apache.org/guide.the problem is ,I just click the REFRESH button of the browser to reload the SAME perl script.and everytime I reload it,it create a new mysql connection,why? I did set the DBI-trace

RE: help me under those Apache::DBI log info.

2000-01-27 Thread Geoffrey Young
:[EMAIL PROTECTED]] Sent: Thursday, January 27, 2000 10:30 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: help me under those Apache::DBI log info. Thank you,Geoffrey.What you said about using "the same conenct string" I also read from the perl.apache.org/guide.t

Re: help me under those Apache::DBI log info.

2000-01-27 Thread Stas Bekman
On Thu, 27 Jan 2000, vinecent hong wrote: Thank you,Geoffrey.What you said about using "the same conenct string" I also read from the perl.apache.org/guide.the problem is ,I just click the REFRESH button of the browser to reload the SAME perl script.and everytime I reload it,it create a new