求助perl脚本在cpanel空间做cgi的问题
我在public_html/cgi-bin/目录下用perl写了一个测试脚本test.pl
#!/usr/bin/perl
print "Content-type: text/html nn ";
print "Hello, world! ";
然后在浏览器运行http://www.gdiscuz.com/cgi-bin/test.pl报500错误,属性没问题(public_html/cgi-bin/和test.pl属性都是755),文件是文本型文件,unix格式,perl的路径也没错,还有什么原因?望赐教,谢谢
[解决办法]
先把你的代码纠正了再说:
#!/usr/bin/perl
print "Content-Type: text/html\n\n ";
print "Hello, world! ";