Re: ASCII/binary endline character trouble

2012-04-03 Thread hOURS
--- On Tue, 3/27/12, Rob Dixon wrote: From: Rob Dixon Subject: Re: ASCII/binary endline character trouble To: beginners@perl.org Cc: "hOURS" Date: Tuesday, March 27, 2012, 3:51 AM On 25/03/2012 23:45, hOURS wrote: > > I write CGI scripts for my website in PERL.  When I used to uploa

Re: ASCII/binary endline character trouble

2012-03-27 Thread Jenda Krynicky
Date sent: Sun, 25 Mar 2012 15:45:11 -0700 (PDT) > I write CGI scripts for my website in PERL.  When I used to upload > them with my FTP program I made sure to do so in ASCII mode rather > than binary.  My host made me switch to sFTP however.  I use > FIlezilla, and can't for the life of me f

Re: ASCII/binary endline character trouble

2012-03-27 Thread Rob Dixon
On 25/03/2012 23:45, hOURS wrote: I write CGI scripts for my website in PERL. When I used to upload them with my FTP program I made sure to do so in ASCII mode rather than binary. My host made me switch to sFTP however. I use FIlezilla, and can't for the life of me find out how to choose the

Re: ASCII/binary endline character trouble

2012-03-26 Thread timothy adigun
pack functions, using "B*" Template for conversion; like: while(<>){ print unpack "B*",$_; ## output in binary files and pack reverses } I hope any of this suggestions helps. But really if you ask me I will say, download and do a fresh installation of FileZ

Re: ASCII/binary endline character trouble

2012-03-26 Thread hOURS
ectangle.  So the line became: $sillyrectangle = ""; (with said rectangle between the quotemarks - it won't show up in this e-mail) Needless to say, that didn't work either. Fred --- On Sun, 3/25/12, timothy adigun <2teezp...@gmail.com> wrote: From: timothy adigun <2teezp...@gmail.

Re: ASCII/binary endline character trouble

2012-03-25 Thread timothy adigun
Hi Fred, Please, check my comments and possible solution within your mail. On Sun, Mar 25, 2012 at 11:45 PM, hOURS wrote: > Hello all, > I write CGI scripts for my website in PERL. When I used to upload them > with my FTP > The programming language is Perl not PERL. > program I made sure to