我想运行一个在我的网站上使用JSON的perl脚本。我已成功测试了cgi-bin文件夹中的以下脚本:
#!/usr/local/bin/perl
print "Content-Type: text/html \n\n";
print "<h1 align=center>\n";
print "Welcome to my website\n";
print "</h1>\n";
但是一旦我包含JSON模块,网站的CMS(OpenCart)就会恢复为“无法找到页面”错误:
#!/usr/local/bin/perl
use JSON;
print "Content-Type: text/html \n\n";
print "<h1 align=center>\n";
print "Welcome to my website\n";
print "</h1>\n";
来自网站主机的代表确认JSON安装在(linux)服务器上
我是否使用正确的语法在我的脚本中包含JSON?