Re: how to encrypt my perl script

2004-08-14 Thread Chris Devers
On Sat, 14 Aug 2004, Atul Vohra wrote: We use perl2exe by indigostar (www.indigostar.com) which converts perl to an executable. However, * perl2exe is, as far as I know, Windows only and * programs generated by perl2exe can still be reconstituted into Perl In general, what Franklin is asking for

Re: how to encrypt my perl script

2004-08-14 Thread Atul Vohra
We use perl2exe by indigostar (www.indigostar.com) which converts perl to an executable. Atul - Original Message - From: Chris Devers <[EMAIL PROTECTED]> Date: Sat, 14 Aug 2004 19:45:54 -0400 (EDT) To: Franklin <[EMAIL PROTECTED]> Subject: Re: how to encrypt my perl script > On Sat, 14

Re: how to encrypt my perl script

2004-08-14 Thread Chris Devers
On Sat, 14 Aug 2004, Franklin wrote: I would run a perl script in my website which is hosted in one hosting service provider. Is there any means that I can use to encrypt my script so that it can't be viewed by others illegally? Not really -- if your script is being served on someone else's serve

Re: is this list working?

2004-08-14 Thread JupiterHost.Net
Shillong Dotcom wrote: ? Yes, I spam therefore I am ;p Disclaimer: I don't spam, it just sounded witty and I figured I'd coin it :) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: MySQL and Perl over the web

2004-08-14 Thread JupiterHost.Net
renzo rizzato wrote: Hallo to all, Hello, I am trying to access my MySQL database using the following PERL script: use strict; use warnings; use DBI; use CGI qw(:standard); print "Content-type: text/html\n\n"; print "\n\n\n"; 1 $host = "xxx.xxx.xxx.xxx"; 2 $database = "my_db_name"; 3

MySQL and Perl over the web

2004-08-14 Thread renzo rizzato
Hallo to all, I am trying to access my MySQL database using the following PERL script: use DBI; use CGI qw(:standard); print "Content-type: text/html\n\n"; print "\n\n\n"; 1 $host = "xxx.xxx.xxx.xxx"; 2 $database = "my_db_name"; 3 $user = "my_user_name"; 4 $password = "m

is this list working?

2004-08-14 Thread Shillong Dotcom
? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Here is the URL for Beginning Perl

2004-08-14 Thread hcohen2
Forgive me if this already made the list, but I have not seen a copy and I also received a message that the message failed to be delivered. Since, I had received a number of the latter and subsequently got replies I became jaded. Nonetheless, it appears my message has not made it. I am only

Re: Strange result from LWP::UserAgent, how to extract ?!

2004-08-14 Thread Gunnar Hjalmarsson
Bee wrote: > I have the following code : > require LWP::UserAgent; > my $ua = new LWP::UserAgent; > my $result = $ua -> get('http://somewhere .com'); > > When I print $ua, I got :LWP::UserAgent=HASH(0x1a953c4) > When I print $result, I got HTTP::Response=LWP::UserAgent=HASH(0x1a953c4) > > What'

perldoc and utf8 or something..

2004-08-14 Thread Harry Putnam
My setup: *-- Software: Not fully updated Linux kernel 2.6.7-1.494 Architecture i686 Fedora Core release 2.90 (FC3 Test 1) Hardware: model name : Intel(R) Pentium(R) 4 CPU 2.00GHz cpu MHz : 1994.797 *-- [PERL beginners group alert: Crossposted from Fedora-test list] Group, Something

Strange result from LWP::UserAgent, how to extract ?!

2004-08-14 Thread Bee
I have the following code : require LWP::UserAgent; my $ua = new LWP::UserAgent; my $result = $ua -> get('http://somewhere .com'); When I print $ua, I got :LWP::UserAgent=HASH(0x1a953c4) When I print $result, I got HTTP::Response=LWP::UserAgent=HASH(0x1a953c4) What's that mean ? And how can I e

Re: param help!

2004-08-14 Thread Owen
On Sat, 14 Aug 2004 16:37:18 +0530 Shillong Dotcom <[EMAIL PROTECTED]> wrote: > Hi > > I am very very new to perl. And after lots of work I did script a perl > file to handle a online form (products order form). However, I am > stuck at a point. I tried my best but could not get thru. > > The fo

Re: Checking if URL is on a list.

2004-08-14 Thread Zeus Odin
"Wiggins d Anconia" <[EMAIL PROTECTED]> wrote in message ... > if ($siteurl2 =~ /^(?:www.)?$FORM{'siteurl'}\/?$/) { ^^^ Keep in mind that this solution requires that the URL does not begin with "http://";. The . above needs to be backslashed; including "www.", it also OP

param help!

2004-08-14 Thread Shillong Dotcom
Hi I am very very new to perl. And after lots of work I did script a perl file to handle a online form (products order form). However, I am stuck at a point. I tried my best but could not get thru. The form is located at: http://www.kevincoffey.com/order.htm When I select a different shipping ad

how to encrypt my perl script

2004-08-14 Thread Franklin
Hello:   I would run a perl script in my website which is hosted in one hosting service provider. Is there any means that I can use to encrypt my script so that it can't be viewed by others illegally?   Thank you very much in advance.   Bestwishes Franklin _