I am having a problem uploading a test version of Actinic 7 to our own web servers. My web host has set up some error logging and has sent me the following:
/www/hosts/mysite.co.uk/cgi-bin/cp000014.pl
#!/usr/bin/perlM
$Program = "CATTEST2";M
$Version = '$Revision: 11 $ ';M
$Version = substr($Version, 11);M
$Version =~ s/ \$//;M
$BAD = 0;M
$GOOD = 1;M
my ($bVersionState, $sMessage) =M
CheckPerlVersion();M
my $bCyberSitter = $GOOD;M
Which apparently indicates that the site is uploading in Binary rather than ASCII.
I have also tried uploading the test helloworld.cgi script that I found earlier on the forum and using my own version of WS_FTP it is also uploading in Binary although WS_FTP is set to transfer .cgi files in ASCII mode.
I have transferred loads of .cgi and .pl files using WS_FTP with no problems at all over the past few years.
Has anyone got any ideas what could be causing this problem?
Thanks a lot.
/www/hosts/mysite.co.uk/cgi-bin/cp000014.pl
#!/usr/bin/perlM
$Program = "CATTEST2";M
$Version = '$Revision: 11 $ ';M
$Version = substr($Version, 11);M
$Version =~ s/ \$//;M
$BAD = 0;M
$GOOD = 1;M
my ($bVersionState, $sMessage) =M
CheckPerlVersion();M
my $bCyberSitter = $GOOD;M
Which apparently indicates that the site is uploading in Binary rather than ASCII.
I have also tried uploading the test helloworld.cgi script that I found earlier on the forum and using my own version of WS_FTP it is also uploading in Binary although WS_FTP is set to transfer .cgi files in ASCII mode.
I have transferred loads of .cgi and .pl files using WS_FTP with no problems at all over the past few years.
Has anyone got any ideas what could be causing this problem?
Thanks a lot.
Comment