Josh, ... $ perl -v This is perl, v5.6.1 built for sun4-solaris I've been doing the apachectl graceful thing for quite some time (and I'll probably just stick...
Adam Parrish
AdamP@...
Sep 4, 2002 9:35 pm
646
Hi there Josh (and everybody) I've got a strange problem-- I've just tracked down what's causing it (and given enough time, I'll figure out the solution) but I...
Brat Wizard
brat@...
Sep 5, 2002 11:32 am
647
Hmm- looks like the answer is this-- perl maintains one @INC array per perl interpreter invocation, which normally is sufficient because each program run will...
Brat Wizard
brat@...
Sep 5, 2002 1:56 pm
648
... In order to support dev & production environment on the same hardware, I would run web servers on different ports. This way, no odd in memory data...
Josh Chamas
josh@...
Sep 5, 2002 2:48 pm
649
... I have another work around. It turns out that having $^W set to 1 will trigger this behavior under UseStrict. You probably either have this set...
Josh Chamas
josh@...
Sep 7, 2002 3:10 am
650
I'm passing parameters from a form to a result page, and then trying to call a subroutine from an external package to process the variable. I'm using...
Charlie Farinella
cfarinella@...
Sep 9, 2002 4:25 pm
651
... You can do $main::Request->Form from any perl package, or if you have GlobalPackage set to something like MyPackage, you can do $MyPackage::Request->Form....
Josh Chamas
josh@...
Sep 9, 2002 5:24 pm
652
In my applications, I generally scoop up the form into a hash and then pass it as a hash ref. eg: my $form = $Request->Form(); myfunc($form); sub myfunc { my...
Brat Wizard
brat@...
Sep 9, 2002 5:53 pm
653
I want to specify my mail host at the moment I call $Server->Mail(); I see I can pass in some %smtp_args to the Net::SMTP new() constructor: $Server->Mail({ ...
Broc Seib
bseib@...
Sep 10, 2002 5:46 am
654
... In my latest Apache::ASP 2.39, I have this fixed, or so I think :) I'll be sending this to you in a separate email for verification. Regards, Josh ...
Josh Chamas
josh@...
Sep 11, 2002 7:54 am
655
... How about about setting the config at runtime, like: $Server->Config('MailHost', $your_mailhost); Do this just before the $Server->Mail(). If you really ...
Josh Chamas
josh@...
Sep 11, 2002 8:06 am
656
Hey, Apache::ASP v2.39 is released to CPAN. This is a minor bug fix release & below are the changes. For more on Apache::ASP, please see...
Josh Chamas
josh@...
Sep 12, 2002 7:15 pm
657
Dear mod_perl users, [ SURVEY BELOW, please respond privately ] This is the *2nd survey* that I am sending to the list about a possible business venture where...
Josh Chamas
josh@...
Sep 14, 2002 12:33 am
658
... From: Marc Boom Date: zondag 15 september 2002 18:51:38 To: apache-asp@yahoogroups.com Subject: asp problem Hai there, Can anyone tell me when vsb will be...
Marc Boom
marc-senior@...
Sep 16, 2002 5:56 pm
659
Greetings: I have been struggling with something and I hope someone can set me straight. <% I have a perl module, which contains a database handle (dbh). I...
Stephen Bardsley
sbardsley@...
Sep 16, 2002 9:11 pm
660
Hi there- I do stuff like this all the time-- You cannot store a DBI database handle (dbh) in a session variable and expect it to be there when you get back....
Brat Wizard
brat@...
Sep 16, 2002 10:39 pm
661
Brat Wizard: I greatly appreciate the input. I have some responses inline below. Thanks again. Steve ... I understand the problem, and do not use the...
Stephen Bardsley
sbardsley@...
Sep 17, 2002 3:04 am
662
... Okay, that's what the session object is for, as you appear to already know. ;) ... Okay-- so if I'm understanding you correctly, connecting to the database...
Brat Wizard
brat@...
Sep 17, 2002 4:49 am
663
Hi John: It's ironic how similar our applications seem! I have a perl module that wraps around DBI, and get this, it is called Db.pm also. Not to worry, it...
Stephen Bardsley
sbardsley@...
Sep 17, 2002 5:54 am
664
Hi All: This is a strange error and I really don't know what might be causing it. On the off chance that someone might have dealt with it before, I present it...
Stephen Bardsley
sbardsley@...
Sep 17, 2002 6:31 am
665
... I recently discovered a combination of UseStrict setting with PerlWarn On can uncover some nasty errors like my closure variable scoping issues, that could...
Josh Chamas
josh@...
Sep 17, 2002 6:35 am
666
... Hmm- I contacted the naming committee, they took the matter under advisement, generated half-a-dozen candidates, handed it off to the selection committee ...
Brat Wizard
brat@...
Sep 17, 2002 6:55 am
667
... Try setting $SIG{__DIE__} = \&Carp::confess somewhere. Try setting Debug -3, and post a bit of the error log with the error. I have never seen this...
Josh Chamas
josh@...
Sep 17, 2002 7:19 am
668
I've been meaning for a long time to release some code samples-- here is one I especially like for making menus and navbars in html-- same code will work for...
Brat Wizard
brat@...
Sep 17, 2002 7:27 am
669
Um- minor correction- I slightly misspoke-- I was confusing this with another module I have. This example _only_ matches the URL, CAPTION, and NAME fields from...
Brat Wizard
brat@...
Sep 17, 2002 7:46 am
670
Josh: I'm using the latest, Version 2.39 w/ perl 5.6.1 I'll try some of the other things you suggest too. Steve ... To unsubscribe, e-mail:...
Stephen Bardsley
sbardsley@...
Sep 17, 2002 12:23 pm
671
... This looks like it might have been an XMLSubs tab parse gone awry, is there compiled code output from the Debug 3 config that could be used to confirm...
Josh Chamas
josh@...
Sep 17, 2002 5:20 pm
672
... I have created the ability in the system to have includes shared pretty easily with the Share:: namespace, but haven't put anything in there yet. This...
Josh Chamas
josh@...
Sep 17, 2002 5:45 pm
673
Sorry my englis is bad : On Debian 3.0, Repeat error : t/mail_error...........Use of inherited AUTOLOAD for non-method Time::HiRes::time() is deprecated at...
José Mans
mans@...
Sep 17, 2002 5:46 pm
674
... /root/.cpan/build/Apache-ASP-2.39/blib/lib/Apache/ASP.pm line 226. ... I have never seen an error like this before, has anyone else on this list? This was...