Bram
07/25/2024, 8:01 AMkdx-perbol
07/25/2024, 8:17 AMdotnet run
? I don't recognize this, but it seems like the entire server-side part is malfunctioning.Bram
07/25/2024, 8:35 AMkdx-perbol
07/25/2024, 9:39 AMumbraco\Logs
. And is there a body in the 500 that the screen above shows (check with F12 Network)? And if you turn on ASP.NET Core stdout logging, is there anything there? If you start the app manually from the command line (or is this what dotnet run
does?), are there any errors in the console?Bram
07/25/2024, 11:24 AMBram
07/25/2024, 11:24 AMkdx-perbol
07/25/2024, 11:36 AMBram
07/25/2024, 11:49 AMBram
07/25/2024, 11:49 AMkdx-perbol
07/25/2024, 12:07 PMSebastiaan
07/25/2024, 12:14 PMkdx-perbol
07/25/2024, 12:25 PMBram
07/25/2024, 12:31 PMSebastiaan
07/25/2024, 1:44 PMSebastiaan
07/25/2024, 1:45 PMJason
07/25/2024, 2:17 PMBram
07/25/2024, 2:32 PM{
"$schema": "./appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
}
},
"Umbraco": {
"CMS": {
"Content": {
"AllowEditInvariantFromNonDefault": true,
"ContentVersionCleanupPolicy": {
"EnableCleanup": true
},
"LoginBackgroundImage": "/login/background.jpg",
"LoginLogoImage": "/login/logo.svg",
"MacroErrors": "Silent"
},
"Global": {
"Id": "f8e7937f-b32b-4e21-a929-53a2227dbe18",
"SanitizeTinyMce": true,
"Smtp": {
},
"VersionCheckPeriod": 0,
"TimeOut": "02:00:00",
"DefaultUILanguage": "nl-NL"
},
"Hosting": {
"Debug": false
},
"KeepAlive": {
"DisableKeepAliveTask": true
},
"ModelsBuilder": {
"ModelsMode": "Nothing"
},
"RequestHandler": {
"AddTrailingSlash": false
},
"RichTextEditor": {
"CustomConfig": {
"paste_as_text": true
}
},
"RuntimeMinification": {
"UseInMemoryCache": false,
"CacheBuster": "Timestamp"
},
"Security": {
"AllowPasswordReset": true
}
},
"Storage": {
"AzureBlob": {
"Media": {
}
}
}
}
Bram
07/25/2024, 2:32 PM"Cdn": {
"WebsiteRootUrl": ""
},
"Errors": {
"ErrorXPath": "//systemPages/errorPage",
"GoneXPath": "//systemPages/gonePage"
},
"GoogleLogin": {
},
"DateFolders": {
"CreateDayFolders": false,
"OrderByDescending": true,
"FolderDocType": "dateFolder",
"ItemDocTypes": [
"contentpage",
"detailPage"
],
"AllowedParentIds": [],
"AllowedParentDocTypes": [
"newsOverviewPage"
]
},
"UrlTracker": {
},
"ConnectionStrings": {
//"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
//"umbracoDbDSN_ProviderName": "Microsoft.Data.Sqlite"
}
Bram
07/25/2024, 2:32 PMJason
07/25/2024, 8:44 PMappsettings.Development.json
?Bram
07/26/2024, 6:52 AMjson {
"$schema": "./appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information"
},
"WriteTo": [
{
"Name": "Async",
"Args": {
"configure": [
{
"Name": "Console"
}
]
}
}
]
},
"Umbraco": {
"CMS": {
"Content": {
"MacroErrors": "Throw"
},
"Hosting": {
"Debug": true
},
"RuntimeMinification": {
"UseInMemoryCache": true
},
"ModelsBuilder": {
"ModelsMode": "SourceCodeManual",
"ModelsDirectory": "~/Common/Models/Pages/Generated",
"ModelsNamespace": "MyProject.Web.Common.Models.Pages"
},
"Security": {
"KeepUserLoggedIn": true
}
}
},
"uSync": {
"Settings": {
"ImportOnFirstBoot": true
}
},
"UrlTracker": {
"Enable": false
}
}
Bram
07/26/2024, 7:00 AMSebastiaan
07/26/2024, 9:44 AMBram
07/26/2024, 11:09 AMBram
07/26/2024, 1:59 PMBram
07/26/2024, 2:17 PMapp.useRouting()
was called where it definitely shouldn't have been.Bram
07/26/2024, 2:17 PM