Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Alan Draper 57 posts 140 karma points
    Sep 29, 2022 @ 21:32
    Alan Draper
    0

    Unable to delete page

    Attempting to delete a page, getting the following error:

    FAILED TO DELETE ITEM 3190 One or more errors occurred. (Exceptions were thrown by listed actions. (this ReferenceManager is disposed. Object name: 'Lucene.Net.Search.SearcherManager'.))

    Exception Details : One or more errors occurred. (Exceptions were thrown by listed actions. (this ReferenceManager is disposed. Object name: 'Lucene.Net.Search.SearcherManager'.))

  • Thomas 319 posts 606 karma points c-trib
    Mar 01, 2024 @ 10:50
    Thomas
    0

    Did you find a solution for that ?

  • Alan Draper 57 posts 140 karma points
    Mar 06, 2024 @ 00:46
    Alan Draper
    0

    Ugh. Sorry, I eventually did find a solution, but I think it was more of a kitchen-sink fix where I kept throwing everything at it until it stopped happening.

    Pretty sure I deleted directly in SQL.

  • Alan Draper 57 posts 140 karma points
    Mar 13, 2024 @ 15:38
    Alan Draper
    0

    I just remembered the problem!

    https://github.com/umbraco/Umbraco.Forms.Issues/issues/1140

    If you're comfortable editing JSON and updating via SQL, you have to find the row in UFForms. Copy the Definition field into a text editor.

    Then look for a section with "preValues". Mine looked like this:

    "preValues": [
        {
            "value": "1"
        },
        {
            "value": "2"
        },
        {
            "value": "3"
        },
        {
            "value": "4"
        }
    ],
    

    The problem is that there is no "caption" for the prevalues. So update it like this:

    "preValues": [
        {
            "value": "1",
            "caption": "1"
        },
        {
            "value": "2",
            "caption": "2"
        },
        {
            "value": "3",
            "caption": "3"
        },
        {
            "value": "4",
            "caption": "4"
        }
    ],
    

    Go back and update it in SQL, and the null reference error should be fixed.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies