Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Verity Error

    Hi all. I have recently implemented verity for a phonebook application and all
    was working fine until yesterday. I search the collection and come upempty when
    I know there are records in there. The application log includes this: An
    error occurred while performing an operation in the Search Engine native
    library.coldfusion.tagext.lang.CFIndexTagException : Error # -31 Error # -31
    Error E3-0036 (VDK): Cannot load style.ddd schema (document catalog) in
    collection ... I have to delete the collection, recreate it, run the stored
    procedure to repopulate the collection every time. Any one have any ideas on
    what is going on? Thanks for your help.

    leontova Guest

  2. Similar Questions and Discussions

    1. Verity update error
      We are running Colfusion MX7 on a SuSE Linux 9.3 server and having problems with Verity. Creating a new Verity collection works fine but when we...
    2. ColdFusion Verity Error
      we experiencing lots of issues with the verities, we have reinstalled ColdFUsion a couple of times with no luck. Our project due date was long time...
    3. MX 7.0.1 Verity Error
      Hi all, We have a production server running MX 7.0.1 on Win2k3. When we try to create a collection via CFCOLLECTION, we are getthing the...
    4. Verity Indexing Error--Please HELP!
      I'm trying to creat a verity collection via the ColdFusionMX7 administrator. It is currently running on a Server 2003 machine. When I try to index...
    5. Verity Error CFMX7 VdkError_PathNotFound
      Hi, In CFMX 7 and we build or update verity collection, we get this error messages: An error occurred while performing an operation in the...
  3. #2

    Default Re: Verity Error

    Sounds like some virus scanning program is deleting the style.ddd file from
    the style directory of the collection.

    That would be BAD.

    --
    Tom Jordahl
    Macromedia Server Development


    Tom Jordahl Guest

  4. #3

    Default Re: Verity Error

    Hi Tom. I checked the virus protection software and it's not affecting the file
    in any way. This particular collection is getting updated often throughout the
    day and I have the cflock tag around the indexing of the collection (timeout
    set to 40 sec) Here is the code: <cflock name='personlock' timeout='40'
    throwontimeout='no' type='exclusive'> <cfindex action='refresh'
    collection='personphonebook' key='person_id' type='custom' query='getall'
    body='last_name,first_name,publishedfirstname,publ ishedlastname,title,fulldata'>
    </cflock> Is it possible that the index gets corrupt because too many folks
    are trying to index the collection at once? Do you have any other ideas?
    Thanks.

    leontova Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139