https://discord.umbraco.com
Join Discord
[Solved] Dropzone.js with BeginUmbracoForm
c

Craig100

9 months ago
V13.5.3 Has anyone managed to get Dropzone.js working with a form built with BeginUmbracoForm? I have a form that has 3 text inputs and a file input to upload a photo. If I just use a file input type and don't attach Dropzone it all works swimmingly. When I attach Dropzone, the UI part looks great, but the IFormFile doesn't get populated in the controller. All the other fields do, so it's getting the right route, but there's something amiss in the Dropzone config I just can't get to the bottom of. If anyone's used it and got it working, I'd love a chat 😉 Meanwhile I'm having to show an ugly "Choose file" button. Thanks.
c
m
  • 2
  • 4
  • 30
Migrating Macros to RTE Blocks
t

tdore

10 months ago
We have a large v13 site with more than 1000 pages, all built on nested content with RTE macros in almost all of them. Both of these features are removed in v14. The plan is to use usync to help migrate Nested Content to Block Lists. That seems viable on the surface. I cannot find any information on how to migrate Macros to the new RTE Blocks. Any guidance here?
t
m
  • 2
  • 2
  • 30
Custom `ISortHandler` for use with the Delivery API (v13)
p

ProNotion

11 months ago
I need to implement a custom sort for Delivery API content, I've implemented it as follows:
csharp
public class ReleaseDateSort : ISortHandler
{
    private const string SortOptionSpecifier = "releaseDate:";
    
    /// <inheritdoc />
    public bool CanHandle(string query)
        => query.StartsWith(SortOptionSpecifier, StringComparison.OrdinalIgnoreCase);

    public SortOption BuildSortOption(string sort)
    {
        var sortDirection = sort.Substring(SortOptionSpecifier.Length);

        return new SortOption
        {
            FieldName = ReleaseDateSortIndexer.FieldName,
            Direction = sortDirection.StartsWith("asc", StringComparison.OrdinalIgnoreCase)
                ? Direction.Ascending
                : Direction.Descending
        };
    }
}
However, my sort does not appear to be applied. I am passing it as
releaseDate:asc
. My breakpoint is hit in the
BuildSortOption
method of my
ISortHandler
implementation. Am I missing something?
p
  • 1
  • 2
  • 30
Umbraco.Community.AzureSSO not working in v13
d

Debasish

11 months ago
Hi All, Im using v2.2.0 Umbraco.Community.AzureSSO in my umbraco v13.5.2 project. I have set it up like below:
"AzureSSO": {
  "Credentials": {
    "Instance": "https://login.microsoftonline.com/",
    "Domain": "https://localhost:44379/",
    "TenantId": "<tenantId>",
    "ClientId": "<clientId>",
    "CallbackPath": "/umbraco-microsoft-signin/",
    "SignedOutCallbackPath ": "/umbraco-microsoft-signout/",
    "ClientSecret": "<clientSecret>"
  },
  "DisplayName": "Azure AD",
  "DenyLocalLogin": true,
  "Icon": "icon-microsoft-fill",
  "ButtonStyle": "btn-microsoft"
}
Using the above settings, I get the Azure AD login button. On click of the button, I'm being redirected to https://localhost:44379/umbraco#/undefined after entering the Microsoft credentials and I can't see any content in the backoffice. Am I missing something? Please help
d
s
  • 2
  • 3
  • 30
ASP.NET & .NET Core Hosting and Freehost...
s

Søren Mastrup

12 months ago
I have just discovered https://www.monsterasp.net/. They seem to offer a bundle of web and email hosting. Has anyone tried it? The price seems like a bargain to me, so I have doubts about their stability, especially with their mail hosting.
s
s
c
  • 3
  • 6
  • 30
Umbraco Forms does not store or save data from a date picker
a

Amalie Wowern

about 1 year ago
Has anyone experienced that Umbraco Forms does not store or save data from a date picker after upgrading to 13.5.1
a
  • 1
  • 1
  • 30
Delete unused media files in Umbraco 8
a

Areeb

about 1 year ago
I have a project built on Umbraco 8.18.14 which has a lot of unused media files that needs to be deleted. I am trying to find any pre-built package that can delete those media files which are not assigned to any content item. I am able to find packages that works with either Umbraco 7 or Umbraco 10. Can i get support on how to do it in Umbraco 8?
a
d
  • 2
  • 4
  • 30
Setup Umbraco as a child IIS
t

Tameem

about 1 year ago
‏I have set up Umbraco as a child application named "cms" under my website in IIS. However, I'm encountering issues with the site returning script errors. ‏Specifically, when I access the backoffice, I see 404 errors for resource loading, including JavaScript, CSS, and other files. The problem seems to be that Umbraco is installed under “/cms,” but it is attempting to load these resources from the root “/” instead. ‏I've tried several troubleshooting steps but have not been able to resolve the issue. Any assistance or guidance on how to fix this would be greatly appreciated.
t
c
  • 2
  • 1
  • 30
Shared database in V14
e

Edi

over 1 year ago
Hi guys, is anyone using a shared database for multiple environments and multiple hosts per environment?
e
p
+2
  • 4
  • 8
  • 30
V13 to V14 upgrade within Docker container
a

adrumbum89

over 1 year ago
I've been following along with @CarlCod_es and the docker workshop and if running fine for V13, but has anyone else come across an error when trying to upgrade? I'm coming across the following: error:invalid_request error_description:This server only accepts HTTPS requests. error_uri:https://documentation.openiddict.com/errors/ID2083
a
c
s
  • 3
  • 10
  • 30
Previous676869Next

Umbraco

A hub and casual space for you to interact with fellow community members and learn more about Umbraco!

Powered by