If you're using Apache webserver, like I am, and Coldfusion, block these administrative directories in the CFIDE directory, for security's sake. These lines should be entered in the httpd.conf file:
<LocationMatch "/CFIDE/administrator/"> order deny,allow deny from all #allow from local and EWH allow from 127.0.0.1 allow from 69.63.128.150 </LocationMatch> <LocationMatch "/CFIDE/adminapi"> order deny,allow deny from all #allow from local and EWH allow from 127.0.0.1 allow from 69.63.128.150 </LocationMatch>
<LocationMatch "/CFIDE/componentutils"> order deny,allow deny from all #allow from local and EWH allow from 127.0.0.1 allow from 69.63.128.150 </LocationMatch>
|