Re: best way to configure for multiple developers?

2003-04-03 Thread Stas Bekman
Right, I guess it just "feels" like it is working under mp1, since I can get @INC to contain "." (the current dir) and use StatINC in all the developer locations. In the mp2 server, it shows me a different @INC, that doesn't include "." (is it possible in mp2?). You almost got me ;) I was looking

Re: best way to configure for multiple developers?

2003-04-03 Thread Brian C. Thomas
about "+Parent" and virtual hosts. > > You should read the docs for tips on this, especially here: > http://perl.apache.org/docs/general/control/control.html#Starting_a_Personal_Server_for_Each_Developer > > The strategies for this are mostly unaffected by mp 1 vs 2. >

Re: best way to configure for multiple developers?

2003-04-03 Thread Stas Bekman
evelopment site. Is there a "best" way to configure the apache/mp2 setup so that there doesn't have to be constant additions to "startup.pl" to adjust the INC path? What about name space conflicts? For example, I want developer1 to use /dev1, and developer2 /dev2. I want

Re: best way to configure for multiple developers?

2003-04-03 Thread Perrin Harkins
ntrol.html#Starting_a_Personal_Server_for_Each_Developer The strategies for this are mostly unaffected by mp 1 vs 2. Is there a "best" way to configure the apache/mp2 setup so that there doesn't have to be constant additions to "startup.pl" to adjust the INC path? If you don't need to restart t

best way to configure for multiple developers?

2003-04-03 Thread Brian C. Thomas
Is there a "best" way to configure the apache/mp2 setup so that there doesn't have to be constant additions to "startup.pl" to adjust the INC path? What about name space conflicts? For example, I want developer1 to use /dev1, and developer2 /dev2. I want each developer to be

Re: Best way to create a properties file for cgi/perl scripts

2002-04-17 Thread Elizabeth Barham
"Cox, Todd (NCI)" <[EMAIL PROTECTED]> writes: > I have a few Perl scripts that updates our Novell Directory using the > Net::LDAP module. My question is I have created a ldap properties file that > has the bind user and a few other items like scope and base. I would li

Best way to create a properties file for cgi/perl scripts

2002-04-17 Thread Cox, Todd (NCI)
To all who may help, I have a few Perl scripts that updates our Novell Directory using the Net::LDAP module. My question is I have created a ldap properties file that has the bind user and a few other items like scope and base. I would like to know the best way to secure this file but still

Re: best way to handle my-website-configuration.xml?

2001-09-25 Thread Robin Berjon
On Tuesday 25 September 2001 18:12, Edward wrote: > On Tue, Sep 25, 2001 at 02:59:07PM +0200, Robin Berjon wrote: > > With AxKit you can seamlessly serve XML transformed by a variety of > > things, including XSLT. It is fast (esp 1.5 beta) and it has its own > > internal caching engine that makes

Re: best way to handle my-website-configuration.xml?

2001-09-25 Thread Edward
On Tue, Sep 25, 2001 at 02:59:07PM +0200, Robin Berjon wrote: > With AxKit you can seamlessly serve XML transformed by a variety of things, > including XSLT. It is fast (esp 1.5 beta) and it has its own internal caching > engine that makes it even faster. Also, it can cooperate with a number of

Re: Best way to attach a module to /

2001-06-15 Thread Thomas Klausner
Hi! On 14 Jun 2001, at 14:03, Andrew Ho wrote: > JK>What is the best way to attach a module to be run when a user first > JK>enters the site? > GED>Can you be a bit more specific? > I think the question is better phrased by the subject, "how can I > use mo

Re: Best way to attach a module to /

2001-06-14 Thread Andrew Ho
Hello, JK>What is the best way to attach a module to be run when a user first JK>enters the site? GED>Can you be a bit more specific? I think the question is better phrased by the subject, "how can I use mod_perl to handle all requests?" This is less intuitive than t

Re: Best way to attach a module to /

2001-06-14 Thread Ged Haywood
Hi there, On Thu, 14 Jun 2001, Jamie Krasnoo wrote: > What is the best way to attach a module to be run when a user first > enters the site? Can you be a bit more specific? 73, Ged.

Best way to attach a module to /

2001-06-14 Thread Jamie Krasnoo
What is the best way to attach a module to be run when a user first enters the site? use LocationMatch and set it to only match / as in ^/$ ? Thanks, Jamie Krasnoo [EMAIL PROTECTED]

Best way to handle gobal hash assignment under Apache::ASP

2001-01-08 Thread Aaron Johnson
I have a configuration hash that controls all the aspects of my application. It is updated while the server is running so it needs to be "refreshed" for all processes. What is the best way to share it globally and insure that updates are read by all processes? I currently store the

RE: What's the best way to display static HTML?

2000-11-15 Thread Vivek Khera
> "AMK" == Arthur M Kang <[EMAIL PROTECTED]> writes: AMK> The framework is all dynamic content with dynamic links for each user. Apache::Include should be useful then. Just Apache::Include->virtual('/path/to/file.html'); -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Re: What's the best way to display static HTML?

2000-11-15 Thread Vivek Khera
> "AMK" == Arthur M Kang <[EMAIL PROTECTED]> writes: AMK> I'm using modperl for a site I'm developing. The basic structure (framework AMK> (header and footer)) is all dynamic and custom built for individual users. AMK> There are a series of static HTML documents, though, that need to be Is

What's the best way to display static HTML?

2000-11-15 Thread Arthur M. Kang
I'm using modperl for a site I'm developing.  The basic structure (framework (header and footer)) is all dynamic and custom built for individual users.  There are a series of static HTML documents, though, that need to be incorporated within the dynamic framework.  If I just stick the HTML i

Best way?

2000-05-10 Thread Scott Alexander
Hi, I have in every script my $user_language = library::language($user, $dbh) ; # is it finnish, english or swedish my %output = library::load_language($user_language) ; # ties %output to a dbm %output holds all the different outputs needed for each language then for my subs which are in a

RE: best way to call traceroute

2000-04-08 Thread Steven Champeon
On Fri, 7 Apr 2000, Karyn Ulriksen wrote: > One of the reasons that I always like the nph- construction is that is > showed the traceroute 'live' like it would from a console. Last I checked > perl doesn't show the traceroute result until the sessions complete which > could be a long time if ther

Re: best way to call traceroute

2000-04-07 Thread Eric Cholet
> Sent: Friday, April 07, 2000 7:18 AM > To: mod_perl Mailing List > Subject: Re: best way to call traceroute > > > Steven Champeon wrote: > > > On Fri, 7 Apr 2000, Sam Carleton wrote: > > > I want to call traceroute to the remote_host from within a mod_p

RE: best way to call traceroute

2000-04-07 Thread Karyn Ulriksen
u find a way to get past that? -Original Message- From: Sam Carleton [mailto:[EMAIL PROTECTED]] Sent: Friday, April 07, 2000 7:18 AM To: mod_perl Mailing List Subject: Re: best way to call traceroute Steven Champeon wrote: > On Fri, 7 Apr 2000, Sam Carleton wrote: > > I want t

Re: best way to call traceroute

2000-04-07 Thread Sam Carleton
Steven Champeon wrote: > On Fri, 7 Apr 2000, Sam Carleton wrote: > > I want to call traceroute to the remote_host from within a mod_perl > > script, being a C/C++ programmer I don't the best way to do that. Is > > there a traceroute object I could use? If so, how?

Re: best way to call traceroute

2000-04-07 Thread Steven Champeon
On Fri, 7 Apr 2000, Sam Carleton wrote: > I want to call traceroute to the remote_host from within a mod_perl > script, being a C/C++ programmer I don't the best way to do that. Is > there a traceroute object I could use? If so, how? Otherwise how do I > run traceroute f

best way to call traceroute

2000-04-07 Thread Sam Carleton
I want to call traceroute to the remote_host from within a mod_perl script, being a C/C++ programmer I don't the best way to do that. Is there a traceroute object I could use? If so, how? Otherwise how do I run traceroute from within a perl script? Sam