Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting Cgi to work in any Folder

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi , Can Someone Tell me how to get CGI to Work in any folder or/and All Subfolders ?
All/Any help is Appreciate !
Thanks in Advance ...
 
Btw , Are there any Free Control Panel's for a Apache Win Server ??? I cant seem to find any at all ...
 
Add ExecCGI to the options for any directory and it will allow you to execute CGI scripts in that folder and any subfolders unless the sub folder has an override.

<Directory &quot;/path/to/folder&quot;>
Options Indexes MultiViews ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>

I don't know of any control panels for Win Apache. Steve Kiehl
webmaster@nanovox.com
 
Most folks just edit httpd.conf but you might try this link for a GUI for setting up apache on windows.

Just to add to what Kiehlster said above, to can also use the AddHandler directive to the globals and it will allow the execution of cgi scripts outside the cgi-bin.

Addhandler .cgi .pl
 
Does anybody know how to allow users to run their own
cgi scripts using suEXEC facility?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top