Copied to clipboard

Flag this post as spam?

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


  • Marcus Maunula 229 posts 386 karma points
    May 23, 2022 @ 17:42
    Marcus Maunula
    0

    Strange issue with Vendr, cannot delete carts from Backoffice

    I thought it might be a license issue but there are only a couple of test carts and even if I clean out all with SQL I can't get it to delete old carts.

    I have tried uninstalling, downgrading and to no avail. Using latest 9.5 and latest Vendr.

    enter image description here

    The storeid here turns up empty so I guess that is it but the Store is setup and working otherwise.

    /umbraco/backoffice/vendr/vendrentity/DeleteEntity?entityType=Cart&entityId=de40a6a7-fc8f-45e2-8233-0180f14aea36&storeId=&parentId=

  • Marcus Maunula 229 posts 386 karma points
    May 23, 2022 @ 18:12
    Marcus Maunula
    0

    I tried creating a second shop but then it won't allow me to delete the old one. So I guess it is about access rights. Getting 405 when trying to delete the default Country(UK) too.

  • Dave Woestenborghs 3504 posts 12135 karma points MVP 9x admin c-trib
    May 24, 2022 @ 06:49
    Dave Woestenborghs
    2

    Hi Marcus,

    Are you running Umbraco 9 on a full IIS server. If so, I had the same issue when running on full IIS and had to put this in my web.config.

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
       <location path="." inheritInChildApplications="false">
        <system.webServer>
          <modules>
            <remove name="WebDAVModule" />
          </modules>
           <handlers>
            <remove name="WebDAV" />
        </system.webServer>
      </location>
    </configuration>
    

    I had to disable WebDAV.

    Dave

  • Marcus Maunula 229 posts 386 karma points
    May 24, 2022 @ 07:25
    Marcus Maunula
    0

    Huge thanx. Thank you.

    Yes IIS since I know of no better way of handling all the other stuff :).

    And yes it works. Matt Brailsford might see it useful to add this to the docs. Unless it was there all the time and I am blind but still. Nice job Dave.

  • Dave Woestenborghs 3504 posts 12135 karma points MVP 9x admin c-trib
    May 24, 2022 @ 07:51
    Dave Woestenborghs
    1

    Hi Marcus,

    Don't know if it is in the docs yet. But Matt is aware of this.

    Dave

  • Marcus Maunula 229 posts 386 karma points
    May 24, 2022 @ 11:05
    Marcus Maunula
    0

    Lets put it on the wishlist for next version in that case (docs that is). Thanx.

  • 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