Are you storing the cgi.remotehost variable in a table?
If so you could query that table for that IP..

<cfquery name="foo" datasource="...">
select * from questionaire
where ip = <cfqueryparam cfsqltype="cf_sql_varchar" value="#cgi.remotehost#" />
</cfquery>

then you can check the recordcount of that query..
<cfif foo.recordcount gte 1>



On 7/25/05, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]> wrote:
> How are you setting this client variable if the calling page is posting to a
> perl script?  I am not sure how this is possible?  You would need to have
> form posting to cf page which sets the client var.
> 
> 
> 
> -----Original Message-----
> From: Ian Vaughan [mailto:[EMAIL PROTECTED]
> Sent: 25 July 2005 15:15
> To: CF-Talk
> Subject: RE: Restricting Access
> 
> Still not working very frustrating, can you see from the code why the
> form keeps displaying instead of the STOP message as I have submitted
> the form !
> 
> When I run a cfdump var="#client.localip#"> it comes back with an error
> ' Element LOCALIP is undefined in CLIENT.  '
> 
> <cfif isDefined("client.localip") and client.localip EQ
> #cgi.remote_addr# >
>   STOP!
>   <cfabort>
> </cfif>
> 
> 
>  <cfif isDefined("form.v4")>
>    <cfset client.localip = #cgi.remote_addr#>
> </cfif>
> 
> 
> 
> <form action="cgi-bin/subqs.pl" method="post" target="_top">
> <input type="hidden" name=":SURVEY:" value="Questionnaire2">
> <input type="hidden" name=":EMAIL:" value="[EMAIL PROTECTED]">
> <input type="hidden" name=":USERID:" value="069/001">
> 
> <input type="hidden" name="V4" value="">
> <input type="hidden" name="V20" value="">
> <input type="hidden" name="V21" value="">
> 
> </form>
> 
> 
> 
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212742
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to