Jasmin Savard

Results 473 comments of Jasmin Savard

5.2.0 will allow some modifications on the dark mode and how we implemented it too. Well, I need to try it at least. https://getbootstrap.com/docs/5.2/migration/#more-css-variables

Updating the Workflow module Bootstrap components will break the popovers and modals. The module probably needs a refresh because these javascript components have been changed in BS 5.

If you are using the ContentManager to update your content item it should re-index properly. Are you updating the content item with the OrchardCore.Content API or is it done from...

Nothing prevents you selecting a table without prefix with that query : ```SQL IF @tablePrefix != null SELECT TABLE_NAME FROM information_schema.tables WHERE TABLE_NAME LIKE @tablePrefix + '[_]%' ELSE SELECT TABLE_NAME...

https://github.com/OrchardCMS/OrchardCore/blob/62eed89890b6b9b6d71a02e1465269b9bb512207/src/OrchardCore/OrchardCore.OpenId.Core/YesSql/Migrations/OpenIdMigrations.cs#L517 Here is where we execute this Drop Index SQL query on the last migration we had (11 months ago). Though, we did not create this migration between 1.2 to...

If the Migration is not successfully run then it will run again on every application start. So, restarting the application pool or website will run the migrations again.

Normally it should run fine. Here, what we do is clean the Database of these records which could cause a constraint issue. It seems like it doesn't remove these records...

Generally, if you are using a Nuget packages solution this could be quick. Else, you need to wait for the next release which could be months. Though, here, I have...

@mwpowellhtx I explained how to do it manually and kindly took my own free time to do so. Normally this migration will work. Of course, this is an open-source project...