Question...

2002-02-12 Thread Ron Beck
Hello all, I need to know how to clear the $ENV variables. For example, I use a .htaccess file for specific directories which requires the user to enter userID and password. When they exit the page, I want them to have to re-enter userID and passwd if they enter the page again. Does anyone

Re: Knowing if a apache server is compiled with mod_perl

2001-09-17 Thread Ron Beck
You want to parse through the info returned from... httpd -l For example, here's my httpd -l... trex% httpd -l Compiled-in modules: http_core.c mod_env.c mod_log_config.c mod_mime.c mod_negotiation.c mod_status.c

Re: cgi-lib.pl

2001-07-24 Thread Ron Beck
John, A number of good suggestions came by regarding this. Here's mine, use the following in place of your cgi-bin.pl include... use CGI qw(:cgi-lib :standard -debug); This will allow you to use CGI.pm and have it default to the cgi-lib commands you're used to. The -debug statement

Re: Questions Concerning Large Web-Site

2001-06-11 Thread Ron Beck
Is there a good tutorial or book on the subject of constructing Perl modules? I too have done some of this and would like to create actual modules instead of required subroutines. Ron John Armstrong wrote: I'd convert each 'module' into a real Perl module( YourPackage::Search.pm etc ) and

Re: XMas printing benchmark

2000-12-29 Thread Ron Beck
Since when??? I've always done... print"end_o_doc"; form action="../scripts/pgr_req03.cgi" method="post" table border="0" cellpadding="0" cellspacing="0" width="100%" tr td colspan="4" div align="left" font face="Arial" size="4" color="#80" strongIndividual Requesting the

Re: WindowsNT Explorer like look and feel??

2000-04-18 Thread Ron Beck
I do not have a perl or mod_perl example. However in my "Javascript Manual of Style", there is an example of a WindowsNT Explorer like navigator. The code is too lengthy to post and I don't have it loaded myself. However, if you go to... http://www.he.net/~marcj/mos/ch5a.htm you can

Newbie help - mod_perl use

2000-04-10 Thread Ron Beck
Hello all, I have built Apache 1.3.12 and mod_perl 1.22 and everything seems to be running fine. I have verified that mod_perl.c shows up as one of the compiled-in modules. How can I test or verify that my perl cgi scripts are actually running via mod_ perl rather than simply executing? Is

Re: Newbie help - mod_perl use

2000-04-10 Thread Ron Beck
.conf file. I assumed it was so I didn't have to put all my scripts into a single directory. Is this not correct? Ron "J. Horner" wrote: On Mon, 10 Apr 2000, Ron Beck wrote: Hello all, I have built Apache 1.3.12 and mod_perl 1.22 and everything seems to be running fi