Re: configuration problem

2006-07-13 Thread Jay Scherrer
jiqiang yao wrote: hi, I use apacher 2.0. I set the document root as "/myhome/web". Anything ending in .html can be public. However, the folder within this directory are not public, although I set the mode to 755. Can anybody can help me? yao

Re: [offtopic] perl newbie frustrated

2006-07-13 Thread Philip M. Gollucci
If anyone could please explain what I missed on the differences between ( ) array's and [ ] array's, I'd appreciate it. You want instead beginners@perl.org () is an ARRAY [] is a reference to an array. my @a = (1,2,3); my $b = [1,2,3]; my $r = [EMAIL PROTECTED]; print @a; print @$b; print $r;

Re: [offtopic] perl newbie frustrated

2006-07-13 Thread will trillich
On 7/13/06, Matthew <[EMAIL PROTECTED]> wrote: And for cookie points, if anyone knows how to do a real struct in XMLRPC, that would be awesome. how about SOAP::Lite? -- will trillich "The great enemy of clear language is insincerity." -- Eric Arthur Blair (George Orwell)

Re: [offtopic] perl newbie frustrated

2006-07-13 Thread will trillich
um, lemme clarify a bit there-- On 7/13/06, will trillich <[EMAIL PROTECTED]> wrote: () is a LIST of values, perfect for plopping into an array: @a = (qw/one two three/, 22/7, pi()) a list is a series of values. an array is a place-holder for a series of values. (1..99,'a'..'z',@stuff,qw

Re: [offtopic] perl newbie frustrated

2006-07-13 Thread will trillich
On 7/13/06, Matthew <[EMAIL PROTECTED]> wrote: Apologies for this being off-topic, but this is the best "perl resource" I have. my $test = [2, 4, 8]; print $test; >Array(0x3038303) Oh? That's an array format. OK. Try this: my @test = (2, 4, 8); print @test; >248 ??? Confused. If anyone

configuration problem

2006-07-13 Thread jiqiang yao
hi, I use apacher 2.0. I set the document root as "/myhome/web". Anything ending in .html can be public. However, the folder within this directory are not public, although I set the mode to 755. Can anybody can help me? yao __ Do You Y

Re: [offtopic] perl newbie frustrated

2006-07-13 Thread Max Kanat-Alexander
On Thu, 2006-07-13 at 16:51 -0500, Matthew wrote: > If anyone could please explain what I missed on the differences between > ( ) array's and [ ] array's, I'd appreciate it. () is an array [] is a reference to an array, also known as a "pointer" to an array. -Max -- http

[offtopic] perl newbie frustrated

2006-07-13 Thread Matthew
Apologies for this being off-topic, but this is the best "perl resource" I have. I've been trying for the past 2 hours to get Frontier::Client working (XML-RPC). I originally tried RPC::XML but that dude's documentation was lacking some serious examples. So is F::C, but I found several HO

Re: Apache mod_perl Insecure dependency RegistryCooker.pm

2006-07-13 Thread Philip M. Gollucci
Heiko Weber wrote: cgi-code I must use a taited variable. But how to find the line of code ? thanks for the hint. I added a -section in httpd.conf: use Carp; $SIG{__DIE__} = sub { confess shift }; $SIG{__WARN__} = \&Carp::cluck;

Re: Apache mod_perl Insecure dependency RegistryCooker.pm

2006-07-13 Thread Heiko Weber
Am Freitag, 7. Juli 2006 19:08 schrieb Philip M. Gollucci: > Heiko Weber wrote: > > Sure, I know what "perl taint" is ... so somewhere in my own written > > cgi-code I must use a taited variable. But how to find the line of code ? > > In the errorlog there only the above line, no more deeper/detail

configuration problem

2006-07-13 Thread jiqiang yao
hi, I use apacher 2.0. I set the document root as ".../web". Anything ending in .html can be public. However, the folder within this directory are not public, although I set the mode to 755. Can anybody help me? yao __ Do You Yahoo!? Tired of spam