On Wed, Mar 16, 2005 at 04:45:36PM +1100, Andrew Scott wrote:

> Is there anyone out there that has done this, or even might make some
> suggestions.
> 
> With a few of our sites, I have noticed that theses search engines come
> crawling and have been generating a few errors on pages that require
> cookies, and certain url variables.

You could always check to see if the user agent cgi variable is one of
the search engines, and set appropriate default values. 

eg:

<cfif isdefined("cgi.user_agent") and lcase(cgi.user_agent) contains
"googlebot">

  <cfset CheckVar = "default var here">
<cfelse>
  <cfset CheckVar = cookie.VarOnUsersMachine>
</cfif>


Cheers

Paul Haddon
Technical Services Manager
Formstar Print Technologies


---
You are currently subscribed to cfaussie as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to