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?

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/detailed info.

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 Perl-section in httpd.conf: Perl use Carp; $SIG{__DIE__} = sub { confess shift }; $SIG{__WARN__} = \Carp::cluck;

[offtopic] perl newbie frustrated

2006-07-13 Thread Matthew
Apologies for this being off-topic, but this is the best perl resource I have. vent 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

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 --

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

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 could

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.

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 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: 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

svn commit: r421612 - /perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm

2006-07-13 Thread autarch
Author: autarch Date: Thu Jul 13 06:02:23 2006 New Revision: 421612 URL: http://svn.apache.org/viewvc?rev=421612view=rev Log: Make SUPPORT a copy of the SUPPORT file. I'd just as soon axe the latter. It's not a standard file in a Perl distro, and since it doesn't get installed most people won't

svn commit: r421710 - in /perl/Apache-SizeLimit/trunk: MANIFEST SUPPORT

2006-07-13 Thread autarch
Author: autarch Date: Thu Jul 13 14:32:33 2006 New Revision: 421710 URL: http://svn.apache.org/viewvc?rev=421710view=rev Log: Goodbye, SUPPORT file, we hardly knew ye. The support info is now in the part of the A::SL POD docs. Removed: perl/Apache-SizeLimit/trunk/SUPPORT Modified: