我想在我的网站上运行一个使用 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?