Re: New to Perl

2007-08-11 Thread Prabu Ayyappan
Hi, You can get the ppms from the below links, http://trouchelle.com/ppm/ hope this help, Thanks, Prabu.M.A Jeff Pang <[EMAIL PROTECTED]> wrote: -Original Message- >From: Gladstone Daniel - dglads >Sent: Aug 10, 2007 9:39 PM >To: beginners@perl.org >Subject: New to Perl > >Good Mo

Re: CGI Admin

2007-08-11 Thread Inventor
On Aug 10, 1:08 pm, [EMAIL PROTECTED] wrote: > On Aug 9, 10:18 pm, [EMAIL PROTECTED] (Inventor) wrote: > > > "go into the CGI Admin" in order to debug the issue. > > I suspect this is a web-based control panel where customers can manage > their stuff without shell access. This is probably how you

Problem with Mechanise...

2007-08-11 Thread mail
Hi, I have a simple Mechanise scrip that grabs a url, but as soon as I use it, it returns the following error. Use of uninitialized value in pattern match (m//) at /usr/local/lib/perl5/site_perl/5.8.0/HTTP/Cookies.pm line 45. Missing base argument at /usr/local/lib/perl5/site_perl/5.8.0/HTTP/Resp

Paypal integrations

2007-08-11 Thread Mike Blezien
Hello, we have been looking for a Perl written shopping cart that has the PayPal's Website Payments Pro integrated with it, but haven't found any. There several PHP carts that do have it, but prefer to stay with Perl. Was hoping someone on the list may know of a Perl cart that has this feature

Re: Filling out HTML form w/ hidden and pre-selected fields

2007-08-11 Thread yitzle
On 8/10/07, Kelly Jones <[EMAIL PROTECTED]> wrote: > I've scraped an HTML page and gotten back a string that looks like this: > > [... bunch of stuff I don't care about ...] > > > > > bar > some text here > boing > > [... bunch of stuff I don't care about ...] > > Is there a Perl module that w

Re: Problem with Mechanise...

2007-08-11 Thread yitzle
Please provide more info. Preferably, a short complete program that duplicates your error. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

qr + shift

2007-08-11 Thread yitzle
Works: my $t = shift; my $id = qr($t); Doesn't work: my $id = qr(shift); Why? Thanks! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: qr + shift

2007-08-11 Thread yaron
Hi, my $id = qr(shift); will not work from the same reason that my $id = "shift" will not work!!! Yours, Yaron Kahanovitch - Original Message - From: "yitzle" <[EMAIL PROTECTED]> To: beginners@perl.org Sent: Sunday, August 12, 2007 7:55:38 AM (GMT+0200) Auto-Detected Subject: qr + shift