I have now worked out why 'build collections now' in the 'Manage
Collections' keeps turning up. It turned out that the 'Manage
Collection' (ie verityManage.cfm) was not picking the collections even
though they existed due to the 'if' test in the following ColdFusion
component:

 \applications\farcry_core\packages\farcry\verity.cfc

In verity.cfc, [Line 98],

To fix the error, use FindNoCase instead of Find function, i.e.

Use this:
  <cfif FindNoCase(application.applicationName, qVerity.name) eq 1>
Instead of this:
  <cfif Find(application.applicationName, qVerity.name) eq 1>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/farcry-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to