how to parse the msqid_ds structure return from msgctl(ID, IPC_STAT, $msq_ds)

2006-04-25 Thread Eric Richardson
eference the msq_ds array returned as per http://cpansearch.bulknews.net/markup/IPC_SysV/SysV.pm. How is this msqid_ds structure parsed? Do you have a short example? Thanks, Eric _ Scann

RE: Script does not want to run, error

2003-03-05 Thread Eric Peers
Mel, Renamer does not have execute permissions. Do a chmod 755 renamer.pl. Also the script is owned by root, so you will not be able to run it as me. Eric -Original Message- From: mel awaisi [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 2:34 PM To: [EMAIL PROTECTED

Re: broadcast photo on other site not by up load

2002-12-21 Thread eric lin
ng banner is one example, a lots lists in ebay aution-computer product aution bidding P4 are another example , otherwise they can not have so flexible graphic page design just rely on 6 photo upload in ebay. regard Eric-drop me a note if you can discover how to Sorry, but it's ha

Re: broadcast photo on other site not by up load

2002-12-20 Thread eric
Dear Zentara: I copy that piece of code and paste in my showphoto.pl in C:\apache2\cgi-bin\ but it still not show any photo attach my showphoto.pl please help again Sincere Eric www.linuxspice.com linux/window pc for sale > > > >http://www.linuxspice.com/cgi-bin/

broadcast photo on other site not by up load

2002-12-19 Thread eric
h=3d496a6e87fe66f92029f 79efa3ae737&lat=1039839856&hm___action=http%3a%2f%2fwww%2eandale%2ecom target="_blank">Andale. ---- Please help why my ideal is not work , thanks in advance

Re: add new piece of html code in perl not success:internal server error

2002-12-19 Thread eric
" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> "; it aparant show a piece of white in my IE6, so I put \ in front of every " inside of print ", like print "src=\https://www.paypal.com/images/; then, my

add new piece of html code in perl not success:internal server error

2002-12-19 Thread eric
ece of white) then I tried to put \ before every " then it have errror, Internal Server ERror I know it is just this piece of new code make ghost. Please help Sincere Eric www.linuxspice.com linux/window pc for sale -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

mod_perl & SQL

2002-06-28 Thread eric-perl
Hello, All: Can anyone recommend a good introductory-level tutorial on writing mod_perl modules that interface with SQL? -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Displaying Problems

2002-06-26 Thread eric-perl
's configuration. 2. Does this script have the permissions set correctly? The file itself must be executable before the Web server (i.e., mod_cgi) will execute the script. 3. Is the filename-extension correct to enable the server to recognize it as executable? (e.g., '.cgi' v

Re: How to send an email without Net::SMTP

2002-06-07 Thread Eric Wang
Use Mail::Sendmail Eric On Wed, 5 Jun 2002, Octavian Rasnita wrote: > Hi all, > > Is it complicated to send email with an SMTP mail server if the Net::SMTP > module is not installed? > > Thank you. > > Teddy, > [EMAIL PROTECTED] > > > > -- > To un

RE: Content Warning from MailScan to Mail-Sender!

2002-06-04 Thread Eric Peers
Take a look at http://www.symantec.com/avcenter/venc/data/w95.hybris.gen.html for details about the worm. Sadly, its no laughing matter. Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Send mail question

2002-05-17 Thread eric-perl
On Fri, 10 May 2002, fliptop wrote: > Lance Prais wrote: > > If I am going to sendmail from an Internet using CGI does anyone know all > > the modules I will need to install? This may answer all my questions. > > i use mime::lite and it works great and is simple to use. Di

Re: Counting the number of form fields returned with information

2002-04-18 Thread eric-sourceforge
es."; } else { print "These form-fields did not have values:", ol(li([@missing])); } print end_html(); sub missing_params { foreach (keys %form_fields) { next if defined param($_); push @missing,$form_fields{$_}; } return scalar(@missing); } -- Eri

Re: Counting the number of form fields returned with information

2002-04-18 Thread eric-sourceforge
foreach (keys %form_fields) { next if defined param($_); push @missing,$form_fields{$_}; $fields--; } return $fields; } -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Counting the number of form fields returned with information

2002-04-17 Thread eric-sourceforge
Hello, All: What's the simplest way to make sure that all 10 fields have been selected? I was hoping that... display_error_message() if param() < 10; would work, but it doesn't seem to work correctly. -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL P

Re: Using smtp

2002-04-17 Thread eric-sourceforge
From => "[EMAIL PROTECTED]", To => $To, Subject => "Password reminder for $To", }); print $mailer $Message; $mailer->close; -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Anyone? script was working now doesn't

2002-03-20 Thread Eric Peers
Teresa, Is there more code in your script? I can see that when submitting your form that the error condition below is running instead of some sort of cgi processing. Might be helpful to see what is happening before or after this section of the script. Eric > From: Teresa Raymond <

RE: Poll for my site

2002-03-19 Thread Eric Peers
t;; print "Welcome to Perl!\n"; # print greeting Also check that you are running in a directory that allows scripts to execute and that the web server recognizes the script extension. All assuming you are executing through a browser. Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: parsing a domain name out of an email address

2002-03-15 Thread Eric Peers
sent other than text from outside their network. Anyway, I'm certain why the the script is failing to send the email. I'm sure its something simple. Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

parsing a domain name out of an email address

2002-03-15 Thread Eric Peers
ot;; } Being new to regular expressions I'm not at all certain why this does not work. Thank you, Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cookies

2002-03-11 Thread eric-perl
s=>'20s', Matt: You must print the output of CGI.pm to STDOUT. e.g., my $cookie = cookie(name => 'value'); print header($cookie), start_html(), h1('The Devil is in the details'), end_html(); I suggest that you read ALL of the

Re: apple and oranges

2002-03-07 Thread eric-perl
les into oranges, > any ideas how I get the program to ignore the original data? Ive > tried a variety of logic but have had no luck. ($new = $old) =~ s/apple/orange/; will leave the original value alone and place the modified value in a separate variable. -- Eric P. Los Gatos, CA

Re: Escaping special characters for regular expressions

2002-02-28 Thread eric-perl
haracters in a string before it is passed > to a regular expression? To escape the '\w' just preprend another '\'. To escape the '.' just prepent it with '\'. e.g., $x =~ /\\w/ searches for a single back-slash followed by "w". $x =~ /\./ search

Re: Session cookies

2002-02-27 Thread eric-perl
the user's session only requires not setting any expiration date.) -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Uploading a file

2002-02-27 Thread eric-perl
rl. It's not complicated but it is a security risk. -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is it a problem?

2002-02-27 Thread eric-perl
protected because it is encrypted using a simple encryption method that could be decrypted if someone has enough time. -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Things that make you go hmmmmmmmm

2002-02-26 Thread eric-perl
or more info, check `perldoc -q HERE documents`. (It's a ways down the page...) -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Change first character of a string into Caps

2002-02-09 Thread Eric Pretorious
e close. Use ucfirst() instead. To change the capitalization of several words (e.g., change 'eRic preTorioUs' -> 'Eric Pretorious') try... $foo =~ /(\w+)/\u\L$1/g; -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Image Galleries On-the-Fly

2002-02-08 Thread Eric Pretorious
On Fri, 8 Feb 2002, Eric Pretorious wrote: > I'm hoping to build a CGI script that: > > 1. creates a thumbnail index of .jpg files in a directory, and > 2. serves full-size images > > wrapped in an HTML template, on-the-fly. I found the Apache::Album modlue and r

Image Galleries On-the-Fly

2002-02-08 Thread Eric Pretorious
that transpired (and I can't find the [EMAIL PROTECTED] arhive). Could somebody please tell me where to find the archive? -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Most effecient way to send mail to multiple users

2002-02-02 Thread Eric Pretorious
sure that it can be made to work easily enough, but using it to it's full potential is not a simple task.) -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: What modulo recomended for send emails?

2002-02-02 Thread Eric Pretorious
p://www.samag.com/documents/s=1289/sam04020014/ -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: learn java

2002-01-29 Thread Eric Pretorious
On Tue, 29 Jan 2002, william wrote: > Where can I learn java (beginner) instead on the java.sun.com? Probably by asking that question on a java-related mailing list. -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Module to maintain state for CGI?

2002-01-29 Thread Eric Pretorious
Bill: Ruben Lerner ("At the Forge", Linux Journal Magazine) has written a series of articles about using Mason to maintain state. That's all I know on that subject. On a related note: Have you considered using cookies? -- Eric P. Los Gatos, CA On Mon, 28 Jan 2002, Daedalus w

Modules for parsing RFC822 mail headers

2002-01-10 Thread Eric Pretorious
t gotten a handle on Object-Oriented perl yet.) I've also Mail-Field-Received-0.23 documentation but don't it hardly has any documentation at all.. Are there alternatives to these? -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

create a GUI via to execute perl script

2001-11-05 Thread Eric Wang
Hi guys, Here's a newbie question. How do I create a GUI for users using either UNIX (SOLARIS) or Windows to execute a perl script? Also, I like that cool box with "browse." in with ability to browse the system looking for files. Thank you! Eric

installing CGI in IIS??

2001-11-02 Thread Eric Wang
Hi, Is it possible to install CGI on IIS? I have installed perl 5.06 from active state. But it seems that the .pl file would not get read and renaming it to .cgi file will not work either. Any suggestions? Please Help Thanks, Eric

Re: Global Variables

2001-11-01 Thread Eric Pretorious
in one place and be done with it. Jason: There are several ways to achieve this objective and most envolve HTML and stylesheets. Please be more thorough about what you are trying to achieve specifically. i.e., "Global variables" is as vague an answer as the question that you are a

SMTP: Capturing delivery status

2001-10-28 Thread Eric Pretorious
erhaps I'm misunderstanding, though... -- Eric P. Los Gatos, CA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

SSL via Apache on WINNT

2001-10-25 Thread Eric Wang
Hi people, Is there a way to configure SSL for apache on winnt? thanx Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: where to get modules? and any gui for win32?

2001-10-10 Thread Eric Wang
that version only has no nmake for winnt systems. Thanks for the help thou eric On Wed, 10 Oct 2001, James Kelty wrote: > http://www.bell-labs.com/project/nmake/ > > -James > > -Original Message----- > From: Eric Wang [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, Oct

Re: where to get modules? and any gui for win32?

2001-10-10 Thread Eric Wang
You know where I can get nmake? I used to have it and it works great! but I just lost my HD on my labtop (w/o backup) and I forgot where I got it from. Thanks! Eric On Wed, 10 Oct 2001, Brett W. McCoy wrote: > > Where do I get some of these cool modules like www, DBI... etc? > >

where to get modules? and any gui for win32?

2001-10-10 Thread Eric Wang
Hi people, Where do I get some of these cool modules like www, DBI... etc? and is there a module to write gui programs using perl in win32 environmrnt? (WINNT or 2k) Thanks! Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: CGI on IIS <- bad idea?

2001-08-15 Thread Eric Wang
So I can actually use a CGI to carry out the perl script in the front end and put the -T inside the cgi right? and the users cannot see which perl script was executed because it's on the server site. Is that right? eric On Wed, 15 Aug 2001, Curtis Poe wrote: > --- Mark Bergeron

CGI on IIS <- bad idea?

2001-08-14 Thread Eric Wang
Thanks! can you explain what does the taint option do? I usually just use #!/script/perl.exe Thanks for your help! eric On Tue, 14 Aug 2001, Curtis Poe wrote: > --- Eric Wang <[EMAIL PROTECTED]> wrote: > > Can you run CGI on IIS? > > sorry, I always thought you either nee

Re: Beginning CGI

2001-08-14 Thread Eric Wang
Can you run CGI on IIS? sorry, I always thought you either need apache or httpd for unix/linux but if IIS can run CGI,it'll be great! eric On Tue, 14 Aug 2001, Mark Bergeron wrote: > Well, it would really help if you could give us an example of what you want to do (-; > >

Re: problems with Guestbook script from "Official Guide ... CGI.pm"

2001-08-01 Thread Eric J. Wisti
Haven't ever used 'lock', but it is a perl function for use with threading. I am using some of the code from the book, including the function that you refer to. I just changed the subroutine name from 'lock' to 'filelock'. Eric On Wed, 1 Aug 2001, Bertram, P