Hello everyone
I'm working with the latest Version 10 on Windows 7. All my settings are correct and the server meets all the requirements set out in the Actinic documentation. However I can't pass the network settings test or upload the site because of a scripting error.
Actinic support said they couldn't help and blamed my hosting service. I paid my hosting service extra to look into it and they reported the following:
The root issue was a syntax error on line 2 of the script:
**original code:
#!/usr/bin/perl
?use CGI::Carp qw(fatalsToBrowser);
**changed code:
#!/usr/bin/perl
use CGI::Carp qw(fatalsToBrowser);
Note the extra "?" in line 2 next to use. The script is error-free now:
[cgi-bin]$ perl -c ca000145.pl
ca000145.pl syntax OK
Is this bug something that should be fixed by Actinic? I don't want to have to debug perl scripts all the time.
Cordelia
I'm working with the latest Version 10 on Windows 7. All my settings are correct and the server meets all the requirements set out in the Actinic documentation. However I can't pass the network settings test or upload the site because of a scripting error.
Actinic support said they couldn't help and blamed my hosting service. I paid my hosting service extra to look into it and they reported the following:
The root issue was a syntax error on line 2 of the script:
**original code:
#!/usr/bin/perl
?use CGI::Carp qw(fatalsToBrowser);
**changed code:
#!/usr/bin/perl
use CGI::Carp qw(fatalsToBrowser);
Note the extra "?" in line 2 next to use. The script is error-free now:
[cgi-bin]$ perl -c ca000145.pl
ca000145.pl syntax OK
Is this bug something that should be fixed by Actinic? I don't want to have to debug perl scripts all the time.
Cordelia
Comment