in reply to Re: Re: Re: String Manupulation
in thread String Manupulation
it is probably a permissions problem. you don't have permission to create the logfile.
to make sure this is the case try this:
open (OUTFILE, ">$logfile" ) or die "can't open file: $!\n";
that will tell you when you try to open the file for writing if you can even do that.