vote up 0 vote down star

Hi there!

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?

flag

3 Answers

vote up 3 vote down check

An earlier line has an unclosed ".

link|flag
vote up 4 vote down

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|flag
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.