[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-developers] CGI Wrap Disable in .htaccess



I am trying to execute a perl script which contains shell commands. I assume that CGI-Wrap kills most shell commands, so I decided to disable it with a .htaccess file containing the following:
 
Options +ExecCGI
AddHandler cgi-script .cgi
AddHandler cgi-script .pl
 
as per knowledge base article 774. The problem is, it does not seem to work, and I still can't execute the proper shell commands. I can telnet in and run the perl script from the command line and the shell commands execute just fine. It's only when I run it through CGI that I have a problem. Does anyone have a solution for me?
 
Kevin