angus203 Posted July 5, 2008 Report Share Posted July 5, 2008 #!/usr/bin/perl print "Content-Type: text/plain", "\n\n"; print "Hello World in Perl", "\n"; http://localhost/cgi-bin/test.cgi it has Internal Server Error http://localhost/cgi-bin/ Forbidden You don't have permission to access /cgi-bin/ on this server. how to run cgi? Quote Link to comment Share on other sites More sharing options...
jacob lee Posted July 5, 2008 Report Share Posted July 5, 2008 internal server error shows you have a problem with your apache configuration file(httpd.conf). the original uniform server has no problem running your code. open your httpd.conf(/udrive/usr/local/apache2/conf/httpd.conf) and check your cgi-bin configuration.it should much like ScriptAlias /cgi-bin "/cgi-bin/" # "C:/Program Files/Apache Group/Apache2/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. <Directory "/cgi-bin/"> AllowOverride All Options ExecCGI </Directory> BUT if you have no problem with your first page of uniform server and can shutdown your server using your admin panel page then there might be another problem. check your apache log file also. Quote Link to comment Share on other sites More sharing options...
angus203 Posted July 6, 2008 Author Report Share Posted July 6, 2008 this is default settingScriptAlias /cgi-bin "/cgi-bin/" # "C:/Program Files/Apache Group/Apache2/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. <Directory "/cgi-bin/"> AllowOverride All Options ExecCGI </Directory> <Directory "/home/admin/www/cgi-bin/"> AllowOverride All Options ExecCGI </Directory> i have deleted the .htaccess file and enabled "AddHandler cgi-script .bat .exe .pl .cgi"finally no work...what problem? Quote Link to comment Share on other sites More sharing options...
Ric Posted July 6, 2008 Report Share Posted July 6, 2008 I deleted my last post answered the wrong question. Deleting .htaccess prevents running CGI scripts in www and its sub-folders. Any scripts in cgi-bin will run with the defaults you have shown. It would be interesting to see if the error log file provides a clue to the problem.Before running the servers open error.log located in \Uniform Server\udrive\usr\local\apache2\logs delete it’s content. Save and run the servers, access your script. Now check the log file for errors. What do you get? All the bestRic Quote Link to comment Share on other sites More sharing options...
angus203 Posted July 7, 2008 Author Report Share Posted July 7, 2008 I deleted my last post answered the wrong question. Deleting .htaccess prevents running CGI scripts in www and its sub-folders. Any scripts in cgi-bin will run with the defaults you have shown. It would be interesting to see if the error log file provides a clue to the problem.Before running the servers open error.log located in \Uniform Server\udrive\usr\local\apache2\logs delete it’s content. Save and run the servers, access your script. Now check the log file for errors. What do you get? All the bestRic Error log[Sun Jul 06 08:55:49 2008] [error] [client 127.0.0.1] attempt to invoke directory as script: W:/cgi-bin/ [Sun Jul 06 08:55:54 2008] [error] [client 127.0.0.1] script not found or unable to stat: W:/cgi-bin/index.cgi Quote Link to comment Share on other sites More sharing options...
jacob lee Posted July 8, 2008 Report Share Posted July 8, 2008 what is need is error logs when the url is http://localhost/cgi-bin/test.cgi not http://localhost/cgi-bin/ Quote Link to comment Share on other sites More sharing options...
angus203 Posted July 9, 2008 Author Report Share Posted July 9, 2008 what is need is error logs when the url is http://localhost/cgi-bin/test.cgi not http://localhost/cgi-bin/ http://localhost/cgi-bin/test.cgi [Sun Jul 08 08:55:54 2008] [error] [client 127.0.0.1] script not found or unable to stat: W:/cgi-bin/test.cgi Quote Link to comment Share on other sites More sharing options...
jacob lee Posted July 9, 2008 Report Share Posted July 9, 2008 does test.cgi exist in "/udrive/cgi-bin" folder? the error log says you do not have the script file in "/udrive/cgi-bin" folder. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.