Values of an array..

2003-07-21 Thread Dennis Stout
is www.blah.org,www.blah.org,www.blah.org So uh... what am I doing wrong? Dennis

Re: Values of an array..

2003-07-21 Thread Dennis Stout
shouldnt 'my $user' be outside the foreach loop? No, it's supposed to be changed each iteration through the loop. Basically it saves $_ to something else, so the next foreach loop doesn't overwrite it, since I need it's value as a key for the hash the next loop creates. Dennis

Re: Values of an array..

2003-07-21 Thread Dennis Stout
Dennis Stout wrote ... my %user_list = get_users($where); foreach (keys %user_list) { my $user = $_; foreach (@{$user_list{$user}{DOMAIN}}) { $user_list{$user}{DOMAINS} .= $user_list{$user}{DOMAIN

Variables

2003-07-21 Thread Dennis Stout
or so using it the other 8. Thanks Dennis

Re: Variables

2003-07-21 Thread Dennis Stout
Is there a way I could get these variables populated on server start and never loaded again unless the database was changed? So in my subroutine for posting an event that changed it I could call repopulate_queue_hash and have it redo the hash, so changes still happened without a restart,

Re: does pnotes() work at all in 1.27?

2003-07-18 Thread Dennis Stout
thing :) Dennis

Re: does pnotes() work at all in 1.27?

2003-07-17 Thread Dennis Stout
Apache 1.3.27 and mod_perl 1.27. Anyways, thought you might like to know I'll work on it and someone out there HAS read your email :) Dennis

cookies

2003-07-16 Thread Dennis Stout
be .stout.dyndns.org? *sigh* 6 more days to finish this database. I doubt I'll make it. Dennis

Re: cookies

2003-07-16 Thread Dennis Stout
itself is running in a Linux environment :) Time for more warnage in the routines... If anyone wants sourcecode to look at, email me. It's much to big to just post to the list. Dennis

Re: cookies

2003-07-16 Thread Dennis Stout
that the error was infact, in the dumbterminal called a win2k box I was using, and not in any actual code Dennis Stout - Original Message - From: Dennis Stout [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 13 13 Subject: cookies Okay, so technically this isn't

Re: cookies

2003-07-16 Thread Dennis Stout
down, declare this a bug, and use $ENV{HTTP_COOKIE} instead. Any ideas how to fix this to return to me the cookie itself? Thanks. Dennis - Original Message - From: Dennis Stout [EMAIL PROTECTED] To: Dennis Stout [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 20 13

Re: cookies

2003-07-16 Thread Dennis Stout
, -domain = '.dyndns.org', -path = '/', ); (okay, I made up your, it sounds better than my, and sinec this is fake nayways... heh) oop, looking at that, I should set the domain to something more sane again, like stout.dyndns.org. :P Dennis P.S. Does anyone

Re: cookies

2003-07-16 Thread Dennis Stout
Cool dude. Now if you know why $r-pnotes() isn't working under apache/modperl .27 you'll make my day! Got some source code to show me what you're doing with it? Otherwise I'll just have to cut and paste the mod_perl API book to you ;) hehehehe. Dennis

Re: cookies

2003-07-16 Thread Dennis Stout
in order to get it to give me a cookie to authenticate with, but a few if's will fix that :D I'm happy, I'm happy, I'm happy! I might actually meet deadline :D w00t! er... *ahem* My thanks to all of you, and special thanks to Mark who helped me the most :D Dennis

Re: pnotes and notes not working from Apache::Registry to handler

2003-07-16 Thread Dennis Stout
There is the problem right there. It needs to be compiled with EVERYTHING=1 PLUS_THAT_OTHER_LITTLE_THING_NOT_INCLUDED_IN_EVERYTHING=1. :P Dennis

Re: [admin] please trim the quoted text in replies to a minimum

2003-07-14 Thread Dennis Stout
actually warn you about sending a message that contained more than x percent quoted material, and would automagically put your cursor underneath the original text instead of above it! *sigh* ... Good old days, 1:17/71 was me :D Dennis

Re: must I use mod-perl

2003-07-13 Thread Dennis Stout
there or it isn't. Dennis

Re: mod_perl 2.0 and cookies

2003-07-11 Thread Dennis Stout
, mod_perl x+1 should be backwards compatible with mod_perl x, if it isn't, then it's broken. (in my opinion..) Dennis

Fw: select multiple

2003-07-10 Thread Dennis Stout
This is the original email I sent out, regarding my multiple selects... S.T.O.U.T. = Synthetic Technician Optimized for Ultimate Troublshooting - Original Message - From: Dennis Stout [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 10, 2003 11 39 Subject: select multiple

Re: select multiple

2003-07-10 Thread Dennis Stout
do that with so many good freely available ones? Interesting. So in mod_perl, I would use $r-args{__what__} to get to it? Heh. I'll email the mod_perl list.. Dennis

Re: select multiple

2003-07-10 Thread Dennis Stout
to work AND now multiple values for one param. S.T.O.U.T. = Synthetic Technician Optimized for Ultimate Troublshooting - Original Message - From: Chris Faust [EMAIL PROTECTED] To: Dennis Stout [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, July

Re: select multiple

2003-07-10 Thread Dennis Stout
mod_perl and the methods available in the apache request object shuold beable to replace CGI.pm entirely, especially when you have a highly customized RequestHandler :/ Guess I'll see what happens, since I need cookie headers to work AND now multiple values for one param. Have you looked

Re: Apache config problem .. please help

2003-07-03 Thread Dennis Stout
$HTTPD $ARGV I then backed out the change and retried, got the same error. killall httpd then try it again :) Dennis

Re: Please help newbie with Module problem.

2003-07-02 Thread Dennis Stout
however when I run the following code #!c:/perl/bin/perl -w use Apache (); use Apache::Request (); use CGI::Carp qw(fatalsToBrowser); my $r = Apache::Request-new(shift); # my $apr = Apache::Request-new($r); print Content-type:text/html\n\n; print Hello, World...\n; print $r; print

Re: Please help newbie with Module problem.

2003-07-02 Thread Dennis Stout
this, however the line $r-content-type('text/html'); seems to be giving my compiler some problems. You could'nt just give me a hint on My mistake, shift key didn't get pressed hard enough =P $r-content_type('text/html'); Dennis

Re: Please help newbie with Module problem.

2003-07-02 Thread Dennis Stout
You can send me- er, the Help Dennis Move out of Alaska charity money by giving your credit card number to *grin* Thank you, I'm sure Randy would agree when I say it's nice to be appreciated :) Dennis Stout S.T.O.U.T. = Synthetic Technician Optimized for Ultimate Troublshooting

If (!$one_thing) {$other;}

2003-07-02 Thread Dennis Stout
This is irking me. $state preserves information about the request and so on. Now, $r-whatever_method works just fine.. EXCEPT for sending headers. When I visit my site, I get my nifty login page, and that is all. Always the login page. I telnetted into the thing to see what kinds of cookie

if (!$one_thing) { $other; }

2003-07-02 Thread Dennis Stout
I suppose the subroutine that makes the call to it would help too. I'll spare you all the dispatch routine as it's quite lengthy, but basically the DispatchTbl::* generates webpages dynamically depending on the uri caught by RequestHandler::handler();. sub post_login_form { my $state =

Re: If (!$one_thing) {$other;}

2003-07-02 Thread Dennis Stout
trying to set is wrong, but I can work on that later. Why is it not sending it normally? More importantly, why am I seeing this when I view source? I'm not supposed to ever see header info. Dennis

Re: If (!$one_thing) {$other;}

2003-07-02 Thread Dennis Stout
to the login page ... Dennis

Re: If (!$one_thing) {$other;}

2003-07-02 Thread Dennis Stout
On Wed, 2003-07-02 at 21:24, Dennis Stout wrote: Okay, I put in some code to take the generated headers and enter them into the body of the page. This had an odd effect. I bet I have a login problem. Whoops. logic problem. YAY, maybe the core of all my problems is vast amounts

Re: If (!$one_thing) {$other;}

2003-07-02 Thread Dennis Stout
if using Perl/Perl sections in the httpd.conf file, if a guy could put the entire RequestHandler in a database as well heh I spose that might take some work, probably with vi and gcc, on apache source files. Dennis

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
Hmmm. No one has actually answered the question, although I am getting all kinds of advice... (-; ... On Thu, 2003-06-05 at 01:42, Stas Bekman wrote: Thomas Klausner wrote: Hi! On Don, Jun 05, 2003 at 12:35:37 -0700, Dennis G. Allard wrote: I am running Red Hat 8.0, Apache/2.0.40

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
On Thu, 2003-06-05 at 13:08, Perrin Harkins wrote: On Thu, 2003-06-05 at 15:55, Dennis G. Allard wrote: MySQL ShmySQL. A database that didn't have transactions until last year and still has no stored procedures Uh, we're talking about session data here, right? Basically ... My point

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
On Thu, 2003-06-05 at 13:37, Thomas Klausner wrote: Hi! On Thu, Jun 05, 2003 at 01:37:59PM -0700, Dennis G. Allard wrote: [In reply to Stas] Please note, though, one of my goals in life is to rely on my software providers to do the work of providing me with a stable, tested

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
]# uname -a Linux oceanpark.com 2.4.20-18.8 #1 Thu May 29 07:20:39 EDT 2003 i686 athlon i386 GNU/Linux [EMAIL PROTECTED] root]# cat /etc/issue Red Hat Linux release 8.0 (Psyche) Kernel \r on an \m [EMAIL PROTECTED] root]# perl -Mmod_perl -le 'print mod_perl-VERSION' 1.9905 Cheers, Dennis

Re: How tell what version of mod_perl is installed?

2003-06-06 Thread Dennis G. Allard
is appreciated. Cheers, Dennis -- Dennis G. Allard telephone: 1.310.399.4740 Ocean Park Software http://oceanpark.com

How tell what version of mod_perl is installed?

2003-06-05 Thread Dennis G. Allard
(); 1; Thanks for any tips and help anyone might provide. (BTW, my more general goal is to have shared memory across multiple Apache threads as part of implementing sessions so that I can avoid doing a database write at every HTTP request just to save session IDs.) Cheers, Dennis -- Dennis G

[patch] Apache::DBI can't be made to always ping

2003-06-03 Thread dennis . ingram
to the most recent version. I would like to ask the maintainer of this module if this patch or equivalent fix could be included in the next release of the module. Apologies if this message is posted to the wrong place, I think I got it right... Regards Dennis Ingram

Re: libperl.so: undefined symbol: PL_dowarn

2002-11-22 Thread Dennis
I added the following debian packages: libperl-dev libperl5.6 and recompiled it and the problem was gone. Dennis, - Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Dennis [EMAIL PROTECTED]; Modperl [EMAIL PROTECTED] Sent: Thursday, November 21, 2002 5:58 PM Subject: Re

libperl.so: undefined symbol: PL_dowarn

2002-11-22 Thread Dennis Kruyt
/pkgs/src/mod_perl-1.27# What is the problem that i get this error libperl.so: undefined symbol: PL_dowarn? Dennis,

libperl.so: undefined symbol: PL_dowarn

2002-11-21 Thread Dennis
Makefile for mod_perl packages:/opt/pkgs/src/mod_perl-1.27# What is the problem that i get this error libperl.so: undefined symbol: PL_dowarn? Dennis,

Re: How do I force a 'Save Window?'

2002-11-20 Thread Dennis Daupert
of the IE versions we have to support). I will need a bit more time to try some of the other more involved ideas , so that won't be for a few more days. /dennis --- Office phone: 817-762-8304

How do I force a 'Save Window?'

2002-11-19 Thread Dennis Daupert
for selected files, so the user will have the option to download the file, then open it in Project or whatever? Thanks for any help or information. /dennis --- Office phone: 817-762-8304

Re: File Upload Questions

2002-11-15 Thread Dennis Daupert
from the uploaded temp file, thus: my $upload = $apr-upload('file'); $upload-link(/path/to/newfile) or die sprintf link from '%s' failed: $!, $upload-tempname; I tried that last night, and it works great. Makes me a believer in checking the archives. /dennis

File Upload Questions

2002-11-14 Thread Dennis Daupert
appreciated. /dennis --- Office phone: 817-762-8304 --- Great leaders never tell people how to do their jobs. Great leaders tell people what to do

I can see Apache.pm, why can't he?

2002-07-29 Thread Dennis Daupert
: if ($INC('Apache.pm') and Apache-module('Apache::Status')); I have both Apache.pm and Apache::Status installed. What gives? /dennis

re: [OT] mod_gzip configuration

2001-12-04 Thread Dennis Haney
$ mod_gzip_item_exclude mime ^image/.* /IfModule -- Dennis use Inline C = qq{void p(char*g){printf(Just Another %s Hacker\n,g);}};p(Perl);

RH7.0+Apache_1.3.14+mod_perl-1.24_01 -- bad combination ?

2000-11-04 Thread Dennis
work) I tried downloading perl5.6.0 and compiling it and mod_perl with the same compiler .. it still didn't work .. did anybody have the same problem ? is there a solution ? or should I stick to RH6.2 for now .. Dennis

I got it to work: apache fails to work with mod_perl

2000-10-15 Thread Dennis
Dennis I'm having a problem making apache work with mod_perl. Short problem description is: when I compile apache by itself, it = works, but when I compile mod_perl (which builds apache also) it doesn't work = and gives me an error that's on = http://www.apache.org/docs/misc/FAQ-D.html

PerlRequire conf/startup.pl

2000-10-13 Thread Dennis
what it's supposed to do ? thanks Dennis

: tags

2000-04-24 Thread Dennis
Hey Have anybody heard of :''some perl code'' or : ''some perl code'' tags? If so, what module is responsible for handling those ? I think it looks something like SSI, but SSI has different style of tags and SSI didn't work with those. or maybe it's a different SSI. Do you

Trying to setup embedded Perl

2000-04-22 Thread Dennis
Hey can you throw some helpful hints on the problem I'm having ? I'm trying to move a working site from singleslibrary.com to my server. Unfortunately the guy who wrote the site for us is not available anymore .. and nobody seems to know what to do, including me. What I'm trying to do

Apache::DBI Problem

2000-01-07 Thread Dennis Megarry
This message was sent from Geocrawler.com by "Dennis Megarry" [EMAIL PROTECTED] Be sure to reply to that address. Everything was running fine, i installed mod_perl and ApacheDBI, now, I get errors trying to connect to mySQL, the message showing up in my error_log file is this: h