Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

what the heck is this?!!!

Quote Reply
what the heck is this?!!!
i get a funny error. what the heck does it mean. the error is @ http://www.awpweb.com/ifind/cgi-bin/admin/admin.cgi
Quote Reply
Re: what the heck is this?!!! In reply to
means you uploaded in non ascii!

hear run this script on all your stuff

---- File removes caraige returns ----

#!/usr/bin/perl
$f=shift;
if(!open(F,$f)){
die "Can't open $f";
}
$lines="";
while(<F> ){
$_=~s/\r//g;
$lines.=$_;
}
close(F);
open(F,">$f");
print F $lines;
close(F);