[27940] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 9304 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Fri Jun 16 06:05:52 2006

Date: Fri, 16 Jun 2006 03:05:06 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)

Perl-Users Digest           Fri, 16 Jun 2006     Volume: 10 Number: 9304

Today's topics:
        Activeperl and 3DES encryption - probably simple <tom@tom.com>
        ANNOUNCE: WWW::YouTube <ermeyers@adelphia.net>
    Re: Broken Pipe in Network Programming <janicehwang1325@yahoo.com>
    Re: can I trust on key %hash natural order? <filippo2991@virgilio.it>
    Re: can I trust on key %hash natural order? <filippo2991@virgilio.it>
    Re: Can't locate Text/CSV.pm in @INC (@INC contains: /u dacoman@gmail.com
    Re: File operations module <hobosalesman@gmail.com>
    Re: how to call a function using variable <nobull67@gmail.com>
        new CPAN modules on Fri Jun 16 2006 (Randal Schwartz)
        Perl - MultiUser Webserver Environment Help lunardragoon@gmail.com
    Re: Perl - MultiUser Webserver Environment Help <tadmc@augustmail.com>
    Re: Perl - MultiUser Webserver Environment Help <vilain@spamcop.net>
    Re: Perl - MultiUser Webserver Environment Help <bernard.el-haginDODGE_THIS@lido-tech.net>
    Re: Perl Web Developer Wanted! (Randal L. Schwartz)
    Re: Perl Web Developer Wanted! <peace.is.our.profession@gmx.de>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Fri, 16 Jun 2006 05:49:27 GMT
From: "thomas" <tom@tom.com>
Subject: Activeperl and 3DES encryption - probably simple
Message-Id: <HDrkg.55951$4L1.29666@newssvr11.news.prodigy.com>

Hello everybody,

I have to admit; I am not a perl programmer but I need to test that file 
encrypted by my program can be decrypted in unix environment using perl 
script.
As far as I know Activeperl comes with libraries supporting 3DES encryption.

How would a script encrypting a file look like? It needs to take four 
parameters: input file, output file, encryption key and initialization 
vector - last two base 64 encoded.

Could someone help?

Thank you,

Tomasz 




------------------------------

Date: Thu, 15 Jun 2006 21:47:29 -0400
From: "Eric R. Meyers" <ermeyers@adelphia.net>
Subject: ANNOUNCE: WWW::YouTube
Message-Id: <HuqdnSp2hPcukA_ZnZ2dnUVZ_sydnZ2d@adelphia.com>

Gentlemen and Ladies of the Perl/CPAN Community,

I sincerely need your help, right now, ASAP.

I was a registered developer with YouTube, and they've BLACKLISTED me for
flagging videos in the areas of "hot babes," "foot fetish" and "bondage
tickling."

If you would be so very sensitive and thoughtful as to experiment with my
YouTube Development Interface (YTDI), called WWW::YouTube, I would greatly
appreciate your immediate efforts.  And I'll be readily available to help
get you started hitting YouTube with a reality check of a world-wide
collective effort against Pornography and Obscenity in the public domain.

I developed the WWW::YouTube interface to protect children, and YouTube
seems to have a problem with that simple concept, so I'm looking for anyone
who'll help me put some political pressure upon YouTube, to protect
children, teenagers and the General Public.

Please email me at ermeyers@adelphia.net if you have any questions or
problems setting thing up.  Immediate portability fixes will be made
available to you, ASAP.

Thanks,

Eric


------------------------------

Date: 15 Jun 2006 18:18:25 -0700
From: "janicehwang1325@yahoo.com" <janicehwang1325@yahoo.com>
Subject: Re: Broken Pipe in Network Programming
Message-Id: <1150420705.605231.131880@i40g2000cwc.googlegroups.com>

I tried to program with preforking server and it works well for both
IO::Socket as well as IO::Socket::SSL. However, due to my supervisor's
request, he wants me to do it with threads. I did debug the program
from the very beginning using a simple server and client and it works
perfectly.

As a result for my debugging yesterday, i found out that if i lock or
using threads->join for my server program, the second client will wait
till the first client to finish. That's why i am wondering could it be
the problem of the database? since when i try to run the first client
until there is nothing to send to server from that client, then i run
the second one and it works! I wondering the inserting data into the
database cause the problem.

Ted Zlatanov wrote:
> On 15 Jun 2006, janicehwang1325@yahoo.com wrote:
>
> > here my server code:
> >
> > use threads;
> >
> > #!/usr/bin/perl
>
> Are you sure this is your code?  The first two lines should be
> switched unless you just don't intend to run directly from the command
> line.  Also, the whole thing doesn't compile.  Try posting a simple
> example that illustrates the error, not snippets from your source
> code.  Then it's much easier to help you.
>
> The threads library, in my experience, can cause strange errors.  Try
> a test without it and make sure things work there.  The
> IO::Socket::SSL module, for example, may not be thread-safe (I don't
> know this, I'm giving an example of why threads should be disabled to
> make sure things work without them).
>
> Also, try using IO::Socket without SSL.  Does that work?
>
> Generally with debugging you want to start with a simple situation and
> work your way up to what breaks, not start with a complex situation
> and try to find the bug(s).
> 
> Ted



------------------------------

Date: 16 Jun 2006 01:37:42 -0700
From: "filippo" <filippo2991@virgilio.it>
Subject: Re: can I trust on key %hash natural order?
Message-Id: <1150447062.464036.289540@i40g2000cwc.googlegroups.com>

John Bokma ha scritto:

> A common mistake I see very often is to extract a lot of data from a
> database, and have the program do a lot of manipulation that could be done
> by the database itself, and probably much more efficient.

this is interesting. Actually this was my deliberate coose from the
possible two:

a)
- query all data from database
- cycle on this data

b) query database into the cycle

I choosed A because I though it was best to minimize the database load
and query overhead. 

Interesting.

Filippo



------------------------------

Date: 16 Jun 2006 01:40:22 -0700
From: "filippo" <filippo2991@virgilio.it>
Subject: Re: can I trust on key %hash natural order?
Message-Id: <1150447222.573316.133990@h76g2000cwa.googlegroups.com>

jl_post@hotmail.com ha scritto:

>       perldoc -q "keep my hash sorted"
>
>    It'll tell you to look at the Tie::IxHash module, which is a special

snip

thanks, probably I'll use this or I'll change the structure of my
query&cycle routine to cycle&query, letting the database to manage data
calculation.

Ciao,

Filippo



------------------------------

Date: 15 Jun 2006 19:58:25 -0700
From: dacoman@gmail.com
Subject: Re: Can't locate Text/CSV.pm in @INC (@INC contains: /usr/lib/perl5/5.8.8
Message-Id: <1150426705.485974.18230@y41g2000cwy.googlegroups.com>

Thank you for your answer. This was the problem. It's working now.
Thanks,
--D

xhoster@gmail.com wrote:
> dacoman@gmail.com wrote:
> ...
> >
> > The line that is causing the problem is:
> >
> > use Text::CSV;
> ...
> >
> > The perl version is perl5.8.8 and I did install the package
> > perl-Text-CSV_XS that came with the Suse 10.1 distro.
> >
> > What am I missing here?
>
> What you are missing is that Text::CSV is not the same thing as
> Text::CSV_XS
>
>
>
> Xho
>
> --
> -------------------- http://NewsReader.Com/ --------------------
> Usenet Newsgroup Service                        $9.95/Month 30GB



------------------------------

Date: 15 Jun 2006 20:43:29 -0700
From: "Hobo Salesman" <hobosalesman@gmail.com>
Subject: Re: File operations module
Message-Id: <1150429409.544591.244670@u72g2000cwu.googlegroups.com>

J=FCrgen Exner wrote:
> Many. Just search for File on CPAN

Somehow I missed exactly what I needed (below). Thanks.

> File::Path



------------------------------

Date: 15 Jun 2006 19:56:49 -0700
From: "Brian McCauley" <nobull67@gmail.com>
Subject: Re: how to call a function using variable
Message-Id: <1150426608.988514.256220@i40g2000cwc.googlegroups.com>


Robert Sedlacek wrote:
> Brian McCauley <nobull67@gmail.com> wrote
> >
> > I prefer...
> >   {
> >      no strict 'refs';
> >      $a ="Net::SNMP::Message::$function"->();
> >   }
> >
> > This is better because
> >
> >   1) It has a big red flag saying "I'm using symrefs"
> >
> >   2) It does not pass any unwanted arguments
> >
> >   3) It cannot be abused to call functions except in namespaces
> > starting Net::SNMP::Message:
>
> It's not exactly the same though. Your version wouldn't care for
> inheritance.

Which is a good thing here.  The OP's problem was one of calling
function not methods.

> But there's also
>
>   my $res = Net::SNMP::Message->can( $function )->( @args );

Which (appart from possibly getting sidetracked by inheritance) is just
another way of keeping symrefs whilst removing the red flag.

And, of course, it does't restrict $function to the Net::SNMP::Message
namespace which could be a major security issue.

It also gives a really unhelpful error if $function is invalid.

Use of uninitialized value in subroutine entry at....
Can't use string ("") as a subroutine ref while "strict refs" in use
at...

> By splitting this up, you'd also get an easy way of verifying that the
> function really exists.

Not one that's any easier than
exists(&{"Net::SNMP::Message::$function"})

However this is probably unnecessary because unlike the can()->()
mechanism the explicit symref gives a sane error.

Undefined subroutine &Net::SNMP::Message::WIBBLE called at...

> > Note: other people will probably tell you not to use a symbol table as
> > dispatch table but to write your own. There are often (usually) good
> > reasons to follow that advice, but this is possbily not one of those
> > occasions.
>
> Possibly. Care to elaborate why you think it's not? A dispatch table
> has more advantages than just keeping things away from the symbol table.
> It is a kind of defined interface, and it doesn't matter what closure
> lies behind. This can come in handy compared to function or method
> calls.

In the OP's problem there's already a defined interface.  At least as
far as I understand it  the OP is a user of Net::SNMP::Message not its
author.  Sure Net::SNMP::Message could expose a hash, or have some
other API, but that's not what this is about. If the interface is
presented as a symbol table, wrapping it in another API is a
duplication of effort.



------------------------------

Date: Fri, 16 Jun 2006 04:42:11 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Fri Jun 16 2006
Message-Id: <J0xrqB.141q@zorch.sf-bay.org>

The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN).  You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.

AmbientOrb-Serial-0.01
http://search.cpan.org/~sozin/AmbientOrb-Serial-0.01/
Perl module for interfacing with your Orb via serial port.
----
App-Cmd-0.002
http://search.cpan.org/~rjbs/App-Cmd-0.002/
write command line apps with less suffering
----
Audio-LADSPA-0.018
http://search.cpan.org/~jdiepen/Audio-LADSPA-0.018/
Modular audio processing using LADSPA plugins. Implements a LADSPA 1.1 host.
----
AudioFile-Info-MP3-Info-1.03
http://search.cpan.org/~davecross/AudioFile-Info-MP3-Info-1.03/
Perl extension to get info from MP3 files.
----
AudioFile-Info-MP3-Tag-1.04
http://search.cpan.org/~davecross/AudioFile-Info-MP3-Tag-1.04/
Perl extension to get info from MP3 files.
----
AudioFile-Info-MP3-Tag-1.05
http://search.cpan.org/~davecross/AudioFile-Info-MP3-Tag-1.05/
Perl extension to get info from MP3 files.
----
AudioFile-Info-Ogg-Vorbis-Header-1.07
http://search.cpan.org/~davecross/AudioFile-Info-Ogg-Vorbis-Header-1.07/
Perl extension to get info from Ogg Vorbis files.
----
AudioFile-Info-Ogg-Vorbis-Header-PurePerl-1.04
http://search.cpan.org/~davecross/AudioFile-Info-Ogg-Vorbis-Header-PurePerl-1.04/
Perl extension to get info from Ogg Vorbis files.
----
CNAB-0.01
http://search.cpan.org/~costela/CNAB-0.01/
Module for operating with CNAB files
----
CSS-Squish-0.03
http://search.cpan.org/~tsibley/CSS-Squish-0.03/
Compact many CSS files into one big file
----
Catalyst-View-CSS-Squish-0.01
http://search.cpan.org/~mramberg/Catalyst-View-CSS-Squish-0.01/
Concenate your CSS files.
----
Catalyst-View-CSS-Squish-0.02
http://search.cpan.org/~mramberg/Catalyst-View-CSS-Squish-0.02/
Concenate your CSS files.
----
Config-Model-0.507
http://search.cpan.org/~ddumont/Config-Model-0.507/
Model to create configuration validation tool
----
DBIx-Class-HTMLWidget-0.06
http://search.cpan.org/~mramberg/DBIx-Class-HTMLWidget-0.06/
Like FromForm but with DBIx::Class and HTML::Widget
----
Date-HolidayParser-0.1
http://search.cpan.org/~zerodogg/Date-HolidayParser-0.1/
Parser for .holiday-files
----
Date-Japanese-Era-0.04
http://search.cpan.org/~miyagawa/Date-Japanese-Era-0.04/
Conversion between Japanese Era / Gregorian calendar
----
Date-Japanese-Era-0.05
http://search.cpan.org/~miyagawa/Date-Japanese-Era-0.05/
Conversion between Japanese Era / Gregorian calendar
----
Date-Japanese-Era-0.06
http://search.cpan.org/~miyagawa/Date-Japanese-Era-0.06/
Conversion between Japanese Era / Gregorian calendar
----
Encode-Unicode-Japanese-0.02
http://search.cpan.org/~hio/Encode-Unicode-Japanese-0.02/
use Unicode::Japanese through Encode.
----
FEAR-API-0.487.5
http://search.cpan.org/~xern/FEAR-API-0.487.5/
Web Scraping Zen
----
Finance-Bank-DE-NetBank-1.05_01
http://search.cpan.org/~rmoriz/Finance-Bank-DE-NetBank-1.05_01/
Check your NetBank Bank Accounts with Perl
----
Finance-Bank-NetBranch-0.02
http://search.cpan.org/~kulp/Finance-Bank-NetBranch-0.02/
Manage your NetBranch accounts with Perl
----
Finance-Bank-NetBranch-0.03
http://search.cpan.org/~kulp/Finance-Bank-NetBranch-0.03/
Manage your NetBranch accounts with Perl
----
Fuse-DAAP-0.01
http://search.cpan.org/~jablko/Fuse-DAAP-0.01/
mount DAAP music shares using the FUSE kernel module
----
GD-Thumbnail-1.01
http://search.cpan.org/~burak/GD-Thumbnail-1.01/
Thumbnail maker for GD
----
HTTP-Server-Simple-0.20
http://search.cpan.org/~jesse/HTTP-Server-Simple-0.20/
----
Imager-Filter-RoundedCorner-0.01
http://search.cpan.org/~typester/Imager-Filter-RoundedCorner-0.01/
Make nifty images with Imager
----
Imager-Filter-RoundedCorner-0.02
http://search.cpan.org/~typester/Imager-Filter-RoundedCorner-0.02/
Make nifty images with Imager
----
JavaScript-XRay-0.97
http://search.cpan.org/~jbisbee/JavaScript-XRay-0.97/
See What JavaScript is Doing
----
Jifty-DBI-0.23
http://search.cpan.org/~jesse/Jifty-DBI-0.23/
An object-relational persistence framework
----
Locale-Maketext-Lexicon-0.62
http://search.cpan.org/~autrijus/Locale-Maketext-Lexicon-0.62/
Use other catalog formats in Maketext
----
Module-Runtime-0.002
http://search.cpan.org/~zefram/Module-Runtime-0.002/
runtime module handling
----
Nagios-Plugin-0.12
http://search.cpan.org/~tonvoon/Nagios-Plugin-0.12/
Object oriented helper routines for your Nagios plugin
----
Net-DRI-0.30
http://search.cpan.org/~pmevzek/Net-DRI-0.30/
Interface to Domain Name Registries/Registrars/Resellers
----
Net-FeedBurner-0.09
http://search.cpan.org/~sock/Net-FeedBurner-0.09/
The great new Net::FeedBurner!
----
Net-GPSD-0.24
http://search.cpan.org/~mrdvt/Net-GPSD-0.24/
Provides a perl interface to the gpsd daemon.
----
Net-Google-Calendar-0.2_devel
http://search.cpan.org/~simonw/Net-Google-Calendar-0.2_devel/
programmatic access to Google's Calendar API
----
Net-MAC-Vendor-1.11
http://search.cpan.org/~bdfoy/Net-MAC-Vendor-1.11/
look up the vendor for a MAC
----
Net-Z3950-ZOOM-1.10
http://search.cpan.org/~mirk/Net-Z3950-ZOOM-1.10/
Perl extension for invoking the ZOOM-C API.
----
PDF-API2-0.52
http://search.cpan.org/~areibens/PDF-API2-0.52/
A Perl Module Chain to faciliate the Creation and Modification of High-Quality "Portable Document Format (aka. PDF)" Files.
----
PDF-API2-Simple-1.0.1u
http://search.cpan.org/~redtree/PDF-API2-Simple-1.0.1u/
Simplistic wrapper for the excellent PDF::API2 modules
----
RRD-Simple-1.37
http://search.cpan.org/~nicolaw/RRD-Simple-1.37/
Simple interface to create and store data in RRD files
----
RRD-Simple-1.38
http://search.cpan.org/~nicolaw/RRD-Simple-1.38/
Simple interface to create and store data in RRD files
----
Task-Sites-ShlomiFish-0.0100
http://search.cpan.org/~shlomif/Task-Sites-ShlomiFish-0.0100/
Specifications for modules needed by the homesite of Shlomi Fish. =cut
----
Teradata-BTET-0.02
http://search.cpan.org/~grommel/Teradata-BTET-0.02/
Perl interface to Teradata in BTET mode
----
Text-CommonParts-0.5
http://search.cpan.org/~simonw/Text-CommonParts-0.5/
return the common starting parts of phrases
----
Text-Template-Simple-0.40
http://search.cpan.org/~burak/Text-Template-Simple-0.40/
Simple text template engine
----
WWW-MakeAShorterLink-1.08
http://search.cpan.org/~davecross/WWW-MakeAShorterLink-1.08/
Perl interface to makeashorterlink.com
----
WWW-YouTube-2006.0615
http://search.cpan.org/~ermeyers/WWW-YouTube-2006.0615/
YouTube Development Interface (YTDI)
----
Win32-IEFavorites-0.01
http://search.cpan.org/~ishigaki/Win32-IEFavorites-0.01/
handles Internet Explorer's Favorites
----
Win32-IEFavorites-0.02
http://search.cpan.org/~ishigaki/Win32-IEFavorites-0.02/
handles Internet Explorer's Favorites
----
XML-Atom-Stream-0.03
http://search.cpan.org/~miyagawa/XML-Atom-Stream-0.03/
A client interface for AtomStream


If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.

This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
  http://www.stonehenge.com/merlyn/LinuxMag/col82.html

print "Just another Perl hacker," # the original

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!


------------------------------

Date: 15 Jun 2006 19:54:55 -0700
From: lunardragoon@gmail.com
Subject: Perl - MultiUser Webserver Environment Help
Message-Id: <1150426495.613215.45380@p79g2000cwp.googlegroups.com>

Hi,
     I'm working on a self-planned project that basically has me
running a webserver from my home.  I'm doing this project to gain some
"experience" with servers and multiple user environments that would
give me an idea of what I could face in my ventures outside of my
present highschool days.  I felt that it was important to give you an
idea of what I was doing so you wouldnt feel like I was cheating on
something :P.  Anywho...My problem is, I need to find a way to make the
Perl interpreter only allow listings of certain files and folders to
come up when a user's script interacts with the files and folders on
the server.  The reason behind this is to keep the users from going
into folders of other users or potentially harming the operating system
that the server runs on.

     My webserver environment comprises of Windows Server 2003,
Enterprise Edition (hey, free trial from Microsoft :P), the Xampp
package of the Apache 2 Server, and the latest build of ActiveState's
ActivePerl.  Please note, I'm not using the mod_perl module for the
Apache webserver (mainly because I could not seem to run my scripts
correctly).  For the Linux users,I absolutely can't switch to Linux for
this project, simply because this first part consists of me Learning
the Apache/'Windows way and another simple fact of me not knowing
anything when it comes to Linux :\.  However, if theres a way to do it
in Linux, please say it as I could research around and look for a way
to implement it in a Windows environment.

I apreciate any help that I recieve on this issue, and I hope others
learn from it as well.

Thanks,
Travis Duncan



------------------------------

Date: Thu, 15 Jun 2006 23:28:42 -0500
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Perl - MultiUser Webserver Environment Help
Message-Id: <slrne94crq.5n3.tadmc@magna.augustmail.com>

lunardragoon@gmail.com <lunardragoon@gmail.com> wrote:


> My problem is, I need to find a way to make the
> Perl interpreter only allow listings of certain files and folders to
> come up when a user's script interacts with the files and folders on
> the server.  


Your problem is: you need to find a way to make CGI programs
only allow listings of certain files and folders.

You do that the same way whether your write your CGI programs
in Perl or Python or Visual Basic.

ie. You do not have a Perl question here. You have a web
    server configuration question.


> I apreciate any help that I recieve on this issue,


Properly partitioning your problem goes an awful long way
toward debugging your problem.

You are looking in the wrong place.

Please post server configuration problems in a newsgroup
about web servers, such as:

      comp.infosystems.www.servers.mac
      comp.infosystems.www.servers.misc
      comp.infosystems.www.servers.ms-windows
      comp.infosystems.www.servers.unix

When you have a _Perl_ question, please post it here.


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


------------------------------

Date: Thu, 15 Jun 2006 23:05:34 -0700
From: Michael Vilain <vilain@spamcop.net>
Subject: Re: Perl - MultiUser Webserver Environment Help
Message-Id: <vilain-28A3D4.23053415062006@comcast.dca.giganews.com>

In article <slrne94crq.5n3.tadmc@magna.augustmail.com>,
 Tad McClellan <tadmc@augustmail.com> wrote:

> lunardragoon@gmail.com <lunardragoon@gmail.com> wrote:
> 
> 
> > My problem is, I need to find a way to make the
> > Perl interpreter only allow listings of certain files and folders to
> > come up when a user's script interacts with the files and folders on
> > the server.  
> 
> 
> Your problem is: you need to find a way to make CGI programs
> only allow listings of certain files and folders.
> 
> You do that the same way whether your write your CGI programs
> in Perl or Python or Visual Basic.
> 
> ie. You do not have a Perl question here. You have a web
>     server configuration question.
> 
> 
> > I apreciate any help that I recieve on this issue,
> 
> 
> Properly partitioning your problem goes an awful long way
> toward debugging your problem.
> 
> You are looking in the wrong place.
> 
> Please post server configuration problems in a newsgroup
> about web servers, such as:
> 
>       comp.infosystems.www.servers.mac
>       comp.infosystems.www.servers.misc
>       comp.infosystems.www.servers.ms-windows
>       comp.infosystems.www.servers.unix
> 
> When you have a _Perl_ question, please post it here.

Well, I'll make it perl question.  If you web server is running perl as 
a module (aka mod_perl), there's no way to run as the owner of the 
files.  If you run as a CGI, you can use CGIwrap (google for it) on 
Linux or MacOS to run CGI scripts as the owner of the file.  Then it's a 
matter of using the umask and filesystem permissions correctly.

-- 
DeeDee, don't press that button!  DeeDee!  NO!  Dee...





------------------------------

Date: Fri, 16 Jun 2006 08:31:47 +0200
From: "Bernard El-Hagin" <bernard.el-haginDODGE_THIS@lido-tech.net>
Subject: Re: Perl - MultiUser Webserver Environment Help
Message-Id: <Xns97E456C5028B5elhber1lidotechnet@10.232.40.227>

Michael Vilain <vilain@spamcop.net> wrote:

> In article <slrne94crq.5n3.tadmc@magna.augustmail.com>,
> Tad McClellan <tadmc@augustmail.com> wrote:

[...]

> > Please post server configuration problems in a newsgroup
> > about web servers, such as:
> > 
> >       comp.infosystems.www.servers.mac
> >       comp.infosystems.www.servers.misc
> >       comp.infosystems.www.servers.ms-windows
> >       comp.infosystems.www.servers.unix
> > 
> > When you have a _Perl_ question, please post it here.
> 
> Well, I'll make it perl question.  If you web server is running
> perl as a module (aka mod_perl), there's no way to run as the
> owner of the files.  If you run as a CGI, you can use CGIwrap
> (google for it) on Linux or MacOS to run CGI scripts as the owner
> of the file.  Then it's a matter of using the umask and filesystem
> permissions correctly. 


And how, pray tell, have you accomplished making this a Perl question?


-- 
Cheers,
Bernard


------------------------------

Date: 15 Jun 2006 19:49:04 -0700
From: merlyn@stonehenge.com (Randal L. Schwartz)
Subject: Re: Perl Web Developer Wanted!
Message-Id: <868xnxke73.fsf@blue.stonehenge.com>

>>>>> "hrit24@gmail" == hrit24@gmail com <hrit24@gmail.com> writes:

hrit24@gmail> Are you looking to join a dynamic, innovative Interactive Marketing &
hrit24@gmail> Technology Company?

Are you looking to join a company that hides behind a GMAIL address
and *spams* a technical group?

Do you have no morals?

Do you have no sense of business ethics?

Then please email your resume to hrit24@gmail.com!  Over and over again, to
make sure they get it. In fact, you might want to send it as a PDF to make
sure they have the fonts to make your resume look good.

I suspect they even might choose you quicker if you send a video of yourself
telling them exactly what qualifies you as a potential candidate.  Be sure
to use the highest bitrate possible.

[If it's not obvious, this kind of post is NOT WELCOME HERE and only
an idiot would have done this.  Do you want to work for an idiot?]

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

-- 
Posted via a free Usenet account from http://www.teranews.com



------------------------------

Date: Fri, 16 Jun 2006 10:46:17 +0200
From: Mirco Wahab <peace.is.our.profession@gmx.de>
Subject: Re: Perl Web Developer Wanted!
Message-Id: <e6trbv$1lr$1@mlucom4.urz.uni-halle.de>

Thus spoke Randal L. Schwartz (on 2006-06-16 04:49):

> ... Do you want to work for an idiot? ...

Isn't this what almost all people do almost every day ;-)

Regards

Mirco



------------------------------

Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>


Administrivia:

#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc.  For subscription or unsubscription requests, send
#the single line:
#
#	subscribe perl-users
#or:
#	unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.  

NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice. 

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.

#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V10 Issue 9304
***************************************


home help back first fref pref prev next nref lref last post