home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / expeval / check_ip.cfm next >
Encoding:
Text File  |  1999-04-12  |  1.1 KB  |  26 lines

  1. <CFIF #CGI.REMOTE_ADDR# IS NOT "127.0.0.1">
  2.     <HTML>
  3.     <HEAD>
  4.     <TITLE>Expression Calculator</TITLE>
  5.     </HEAD>
  6.     <BODY BGCOLOR="#ffffff">
  7.     <A HREF="help.htm"><IMG SRC="expressionevaluator.gif" BORDER=0></A><BR>
  8.  
  9.     <P>In order to prevent unauthorized execution of expressions on your server the
  10.     Expression Evaluator may only be used from the local server IP <B>127.0.0.1</B>. If
  11.     working on the server use this IP reference to link to the Expression Evaluator. 
  12.     
  13.     <P>If you are interested in using Expression Evaluator remotely modify the security
  14.     routine in CHECK_IP.CFM which implements this security protection. There are three 
  15.     options of implementing remote access securely:
  16.     
  17.     <UL>
  18.         <LI>Disable the routine completely by commenting out the CFIF clause, and impose 
  19.         web-server security on the templates of the Expression Evaluator.
  20.         <LI>Add specific remote IPs to the CFIF clause of the security routine.
  21.         <LI>Add specific remote IPs to the CFIF clause of the security routine and impose
  22.         web-server security on the templates of the Expression Evaluator. This is the 
  23.         most secure configuration.
  24.         </UL>
  25.     <CFABORT>
  26. </CFIF>