RE: [Perl-unix-users] Can't find string terminator "*END*" anywhere before EOF

2002-09-01 Thread SuccessInMind
tring terminator "*END*" anywhere before EOF Normand, Looks like there's a quote missing on the subject line. Craig > -Original Message- > From: [EMAIL PROTECTED] [mailto:perl-unix- > [EMAIL PROTECTED]] On Behalf Of SuccessInMind > Sent: Sunday, September 01, 2002

[Perl-unix-users] Can't find string terminator "*END*" anywhere before EOF

2002-09-01 Thread SuccessInMind
Hi, The script below using Mail::Sender to send a Multipart attachement produce the following Debug error: #=myscript.cgi== use CGI::Debug; use Mail::Sender; $sender->OpenMultipart({to => '[EMAIL PROTECTED]', subject => My ZIP File'}); $sender->Body({ msg => <<'*END*' }); Here is a

[Perl-unix-users] Sorting Records In Server Log Files

2002-06-23 Thread SuccessInMind
Hi all, I have a little sorting dilemma. I have combined two server access logs and I am wanting to sort the records by the Date/time field. I can perform simple sorts but this one is out of my expertise. The problem I am running into is that not only each record include different field separato

[Perl-unix-users] Can a "required" library be in a directory one level down?

2002-06-13 Thread SuccessInMind
Hi all, I have my library file located in /cgi-bin/scripts/library.lib. My scripts that requires the library are located one level up in the cgi-bin. I try to use the call to the library like so: require "mydomain/www/cgi-bin/scripts/library.lib"; However I get an error 500 when the script is

[Perl-unix-users] Does anyone has a Perl - pagination example? diplay 50 records at the time

2002-06-06 Thread SuccessInMind
Does anyone has a simple pagination example script they can point me towards? I am looking for a routine that will display 50 records at the time and then when the next page link is clicked on > it will display the next 50 records. The pagination control at the bottom of the page would look some

[Perl-unix-users] Perl pagination example

2002-06-05 Thread SuccessInMind
Does anyone has a simple pagination example script they can point me towards? I am looking for a routine that will display 50 records at the time and then when the next page link is clicked on > it will display the next 50 records. The pagination control at the bottom of the page would look some

[Perl-unix-users] A ZIP Archive Script

2002-05-25 Thread SuccessInMind
Hi group! I sell a CGI software where when the buyer fill out the order form all of the different parameters and paths get set for the user's domain name. The CGI software contains about 50 files. I am wanting to have a script that will ZIP all of the files from the server and e-mail the archive

[Perl-unix-users] A ZIP Archive Script

2002-05-25 Thread SuccessInMind
Hi group! I sell a CGI software where when the buyer fill out the order form all of the different parameters and paths get set for the user's domain name. The CGI software contains about 50 files. I am wanting to have a script that will ZIP all of the files from the server and e-mail the archive

[Perl-unix-users] What is a simple way to create a delay/timer

2002-01-29 Thread SuccessInMind
Hi, Can anyone point me toward their favorite timer script? I want to delay each element of an array using the "foreach" function with a five seconds delay between element. In other words I want to introduce a five second delay between each call. Is there another way beside storing "time" in a

[Perl-unix-users] HTTP::Request & ERROR 500

2001-10-18 Thread SuccessInMind
Hi, I am a little confused... When call the script directly from the browser like this: http://www.mydomain.com/cgi-bin/YForm.cgi?lastname=Charette&email [EMAIL PROTECTED]&name=Normand& The script execute just fine. When I call it from a different script with my request (below) with either th

[Perl-unix-users] Converting this code to send a ZIP attachement

2001-09-12 Thread SuccessInMind
I must admit I do not have must experience (yet) with Mimes and using the different Content-Type so If someone can offer assistance on this one I would be gratefull. I want to convert this code to send a ZIP attachement without having to use any other external, modules if possible. I want the cod

[Perl-unix-users] Anyone knows of any ways to protect the Perl open source code?

2001-09-04 Thread SuccessInMind
Hi Everyone! Beside inserting some cryptic code here and there and sometimes including some environement variables to create a domain proprietary script does anyone knows of any effective ways to protect our Perl code from unwanted eyes? I have seen a script once where all the lines of codes whe

[Perl-unix-users] How to make a Silent POST method?

2001-08-30 Thread SuccessInMind
Hi all, How do we do a silent POST to a script? In other words is there a way to simulate the action of clicking on the SUBMIT button to post the data from a form. I want to POST without having to click on the submit button. If the script see a certain variable or tag it will POST automaticall

[Perl-unix-users] How do I send and image email attachement?

2001-07-29 Thread SuccessInMind
Hi, Given that this perl code will send a TEXT attachement how can I modify this coe to send GIF image instead? open (MAIL, "|$mailprog -oi -t"); print MAIL "From: $admin\n"; print MAIL "To: $admin\n"; print MAIL "Subject: The image you have order\n"; print MAIL "MIME-Version: 1.0\n";