Contents with the Orchard Core Tag Node
-
How to migrate an Orchard 1 application to Orchard Core
Orchard 1.x, Orchard Core, Migration, support login via username or email address for OpenID - This week in Orchard (28/07/2023)How long have you been using Orchard 1 for your website? How satisfied are you with its features and performance? Have you encountered any limitations or challenges with Orchard 1 that you hope to address? If you are looking for a modern and improved version of Orchard 1, you might want to consider migrating to Orchard Core which is a better version of Orchard 1 in many aspects. Orchard Core is not just a port of Orchard 1, but a new and improved system that offers many benefits over its predecessor.
-
Delivering a Node.js asset pipeline as a NuGet package
Tutorial, Orchard Core, MSBuild, Node.js, Add title to background tasks and improve the UI, Lombiq Node.js Extensions - This week in Orchard (17/02/2023)How long does it take you to set up a Node.js-based frontend asset pipeline? That lints and compiles your SCSS, JavaScript, Markdown? That makes code style inconsistencies a tale of the past? In .NET?
-
Our full Orchard Core tutorial series, the Dojo Course 3 is here!
Tutorial, Dojo Course, Orchard CoreAfter a long wait, the new Orchard Core version of our legendary Dojo Course tutorial series is here, the Dojo Course 3!
-
How to debug a NuGet-based Orchard Core solution - Orchard Nuggets
Orchard Nuggets, Orchard Core, NuGet, DebuggingHow can you debug Orchard Core code when you’re working with a solution that loads Orchard packages from NuGet? Orchard’s packages are built with symbols so you can actually use them as source too!
-
How to access services from another tenant in Orchard Core - Orchard Nuggets
Multi-tenancy, Orchard Nuggets, Orchard Core, OpenAPI, Swagger, Taxonomy Localization - This week in Orchard (12/06/2020)The multi-tenancy feature of Orchard Core is great: A tenant is basically a subsite with its own independent content and configuration, under its own domain or URL prefix. You can use tenants to e.g. host websites for multiple customers of yours from a single Orchard Core app. The sites won't know anything about each other but they'll run from the same app built from the same codebase, and have access to the same modules and themes. This makes maintaining such sites very efficient, both for hosting and for development.
What if you want tenants to be not that isolated though? What if there is certain content or configuration that you actually want to share among tenants or some functionality that you want to centralize on one tenant? You can use the APIs we show below to cross tenant boundaries and use any service from another tenant!
-
How to fix "InvalidDataException: Form value count limit 1024 exceeded." in Orchard Core - Orchard Nuggets
Orchard Nuggets, Orchard Core, ASP.NET Core, Exception, Flow PartLet's suppose you're building your shiny new Orchard Core website. In there you're also building a shiny new page, with Flow Part obviously. You throw together a lot of widgets to get all the bells and whistles on the page, then you save it and BAM! Internal Server Error: "InvalidDataException: Form value count limit 1024 exceeded." What's this, did I break Orchard? Is Orchard trying to break me? Let's fix this!
-
How to add a breadcrumb menu in Orchard Core - Orchard Nuggets
Navigation, Orchard Nuggets, Orchard Core, BreadcrumbsA breadcrumb menu is a simple but effective navigation aid that shows the user where they are in the site's content structure and which path they can take back. It's also part of the web accessibility guidelines. However, there's no feature built into Orchard Core for this. Nevertheless, how to create a breadcrumb menu?
-
How to add a culture URL segment for localization in Orchard Core - Orchard Nuggets
Localization, Orchard Nuggets, Orchard Core, ASP.NET Core, Content Picker Menu Item, Kast case study - This week in Orchard (02/05/2020)So you're building a localized Orchard Core site and want all URLs to be in the form of /culture-name/rest/of/the/url, e.g. /hu-HU/my-page. (Figure out what "hu-HU" is! Hint: It's not an owl, neither a rock band from Mongolia!) What do you need to achieve this?
-
How to add a favicon under /favicon.ico in Orchard Core - Orchard Nuggets
Orchard Nuggets, Orchard Core, Favicon, ASP.NET Core, Click to deploy improvements, autoroute container routing - This week in Orchard (24/04/2020)Every website needs a favicon of course and you can easily add one to your Orchard Core site from a theme or module with a
link
tag in a template. However, there's a catch: Certain browsers will still search for it (as a first attempt) under the path /favicon.ico. This can be a tiny bit detrimental to the client-side performance, and show up as annoying errors in your logs. So what can you do to serve a favicon under that path too? -
How to publish an Orchard Core app - Orchard Nuggets
Orchard Nuggets, Publishing, Orchard CoreLet's imagine you've already created an Orchard Core app and now it's time to show it to the world. How do you publish it, or rather, how do you create its publish package?