up vote 0 down vote favorite
share [g+] share [fb]

After upgrading Perl, I receive some errors in a Perl CGI script:

Unquoted string "type" may clash with future reserved word at convertit.cgi line 183. Can't modify constant item in scalar assignment at convertit.cgi line 183, near ""text/javascript\">flashPreloadFinish ('http://www.myurl.com/mysite.html');\n";" convertit.cgi had compilation errors.

Line 183-184:

print "<script type=\"text/javascript\">flashPreloadFinish
('http://www.myurl.com/mysite.html');</script>\n";
print "</body></html>\n";

Any ideas?

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

An earlier line has an unclosed ".

link|improve this answer
feedback

See my Troubleshooting Perl CGI scripts or brian's Guide to Solving Any Perl Problem. Both of them take you through the steps to figure out what's going wrong.

link|improve this answer
feedback

I don't see any problems with your code, but I'd suggest rewriting it as

print <<'EOT';
<script type="text/javascript">flashPreloadFinish('http://www.myurl.com/mysite.html');</script>
</body></html>
EOT
link|improve this answer
feedback

Your Answer

 
or
required, but never shown