Is there anyway to prevent one of my Virtual Servers on Apache from running any CGI's or PHP scripts? I have a space for my family members to upload images and basic html but I need to prevnt any CGIs.
Try commenting out the handler for cgi in the apache httpd.conf file, eg:
#AddHandler cgi-script .cgi
Or tell apache not to load the cgi module (extreme), take out:
LoadModule cgi_module libexec/mod_cgi.so AddModule mod_cgi.c