Re: cgi-lib.pl

2001-07-26 Thread John Buwa
Hi there, Thanks everyone for the great information you have provided. I have taken everyones advice and installed CGI.pm with the cgi-lib compat mode on. I am still having an issue that is only associated with the mod_perl version of the web server? I have two variables at initial login

Re: Help needed with compile

2001-07-26 Thread Ian Stuart
On Wednesday 25 July 2001 23:22, Bryan Coon wrote: Hi, I am trying to compile Apache with a bunch of modules and DSO. I cant find any documentation that covers all of this though. perl.apache.org/guide/ give lots of combination examples, but not all. I would like to build Apache 1.3.20

cached value !!

2001-07-26 Thread raptor
hi, I have the following problem... a module/object that use a callback func..example : use Blah; my $obj = new Blah(...); ..later on ... my $firstcall = 1; sub checkSomething { if ($firstcall) {$firstcall = 0; return 0} code ... }; $$obj{checkCode} = \checkSomething;

Re: cached value !!

2001-07-26 Thread Nouguier Olivier
raptor wrote: hi, I have the following problem... a module/object that use a callback func..example : use Blah; my $obj = new Blah(...); ..later on ... my $firstcall = 1; sub checkSomething { if ($firstcall) {$firstcall = 0; return 0} code ... }; $$obj{checkCode} =

Re: cached value !!

2001-07-26 Thread raptor
thanx alot I also thought it has to be closure... but didn't done it in the right way... i.e. i was doing this way :) : { my $firstcall = 1; sub checkSomething { if ($firstcall) {$firstcall = 0; return 0} code ... }; } but it has to be anonymous ...:) raptor wrote: hi,

Re: Mod_perl CGI.pm Cgi-lib

2001-07-26 Thread Kenny Gatdula
John, I suggest adding 'use strict' at the top of your script. That will help you track down 'variables that won't stay shared'. See the guide for more. http://perl.apache.org/guide/ http://thingy.kcilink.com/modperlguide/porting/An_Easy_Break_in.html hope this helps, Kenny At 03:03 AM

Re: Help required on compile

2001-07-26 Thread Sisyphus
- Original Message - From: Randy Kobes [EMAIL PROTECTED] To: Murugan K [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 3:36 PM Subject: Re: Help required on compile On Wed, 25 Jul 2001, Murugan K wrote: Hai I am trying to build Mod-perl_1.26 on Windows

Re: Help required on compile

2001-07-26 Thread Murugan K
Hai I added the'PERL = $^X,' command the in the makefile.pl . But it is not throwing any perl path error. it is creating the makefile. But when you try nmake , it is throwing the following error makefile(889)cannot have : and ::dependents for same targets.

Re: Help required on compile

2001-07-26 Thread Sisyphus
- Original Message - From: Murugan K [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 10:34 PM Subject: Re: Help required on compile Hai I added the'PERL = $^X,' command the in the makefile.pl . But it is not throwing any perl path

Apache::DBI

2001-07-26 Thread Castellon, Francisco
Does anyone know if Apache::DBI is included with mod_perl? if not could someone tell me where i could get it from?

Re: Apache::DBI

2001-07-26 Thread Ken Y. Clark
On Thu, 26 Jul 2001, Castellon, Francisco wrote: Date: Thu, 26 Jul 2001 07:48:14 -0600 From: Castellon, Francisco [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Apache::DBI Does anyone know if Apache::DBI is included with mod_perl? if not could someone tell me where i could get it

Porting CGI scripts help needed

2001-07-26 Thread Bryan Coon
Hi, I have (happily) compiled and configured Apache with mod_perl, mod_ssl, mod_php and DSO. Whee! Now I am working on porting my scripts over... I have always used strict and perl -w, so for the most part, I think I can just pop my cgis in the /perl directory as Ive defined it in httpd.conf.

RE: Porting CGI scripts help needed

2001-07-26 Thread Joe Breeden
You might try adding use lib '/path/to/global.pm'; to you startup.pl. (Without the s of course) Good luck. --Joe Breeden -- Sent from my Outlook 2000 Wired Deskheld (www.microsoft.com) -Original Message- From: Bryan Coon [mailto:[EMAIL PROTECTED]] Sent:

note on wombat

2001-07-26 Thread brian moseley
for those of you who were at the presentation this morning and wanted more info on wombat - here are the urls: http://libservlet.sourceforge.net http://wombat.sourceforge.net i'm working really hard on getting everything pulled together so you can download and run the thing. the actual

UNSUBSCRIBE?????????????

2001-07-26 Thread OTR Comm
I have tried and tried and tried to get unsubscribed from this list and it does not seem to happen. Anybody have any clues about how to do this?

Re: file upload memory leak

2001-07-26 Thread Jeremy Howard
Jack Cushman wrote: I am having a problem with very large file uploads (eg 100 MB). While the files load, the apache process stays at about 12000 K (the ps VSZ size). When the file finishes uploading, the thread suddenly jumps to over 20. My guess is that something is loading the whole

Re: UNSUBSCRIBE?????????????

2001-07-26 Thread ___cliff rayman___
turn on your mail headers. everything you need to know is in there. if you are not getting properly unsubscribed, perhaps your email address in the netscape preferences is not the same one as you subscribed as. you should be able to discern the correct e-mail address from the Return-Path

Re: note on wombat

2001-07-26 Thread Jeremy Howard
brian moseley wrote: for those of you who were at the presentation this morning and wanted more info on wombat - here are the urls: http://libservlet.sourceforge.net http://wombat.sourceforge.net Unfortunately I wasn't at the preso, but I've looked at the slides you've got up on your

RE: Porting CGI scripts help needed

2001-07-26 Thread Rob Bloodgood
Heres what I did: I had many scripts in one dir that shared many things; subroutines, global variables and modules. I wanted to clean things up, so I created a module called global.pm structured like this: snip The custom stuff scripts all end in 1;, and are loaded with my custom

Problem with arrayrefs in PSections

2001-07-26 Thread Steve Piner
I've come across an oddity in configuring Apache through Perl sections. If I have a local as follows, my %access = ( Order = 'deny,allow', Deny = 'from all', Allow = [['from', '1.2.3.0/24'], ['from', '192.168.1.0/24']], ); then set up locations (or directorys) as