Luuk Peters (ProudNerds)
01/31/2025, 11:38 AM[12:34:07 ERR] Connection id "0HNA1TCKBP0T2", Request id "0HNA1TCKBP0T2:0000000B": An unhandled exception was thrown by the application.
System.IO.FileNotFoundException: No such file exists /umbraco/assets/css/umbraco.min.css (mapped from /umbraco/assets/css/umbraco.min.css)
File name: '/umbraco/assets/css/umbraco.min.css'
at Smidge.SmidgeFileSystem.GetRequiredFileInfo(IWebFile webfile)
at Smidge.FileProcessors.PreProcessManager.<>c__DisplayClass8_0.<ProcessFileImpl>b__0()
at System.Lazy`1.ViaFactory(LazyThreadSafetyMode mode)
at System.Lazy`1.CreateValue()
at Smidge.FileProcessors.PreProcessManager.ProcessFileImpl(IWebFile file, BundleOptions bundleOptions, BundleContext bundleContext)
at Smidge.FileProcessors.PreProcessManager.ProcessFile(IWebFile file, BundleOptions bundleOptions, BundleContext bundleContext)
at Smidge.FileProcessors.PreProcessManager.ProcessAndCacheFileAsync(IWebFile file, BundleOptions bundleOptions, BundleContext bundleContext)
at Smidge.Controllers.SmidgeController.Bundle(BundleRequestModel bundleModel)
https://cdn.discordapp.com/attachments/1334850297603821568/1334850582518825011/image.png?ex=679e07fb&is=679cb67b&hm=5d0a19c60737a6792e46ed5da08d135f6ac48db480abf9d5ee8cddd42599087c&Luuk Peters (ProudNerds)
01/31/2025, 1:52 PMLuuk Peters (ProudNerds)
01/31/2025, 1:56 PMjson
{
"$schema": "appsettings-schema.json",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
},
"WriteTo": [
{
"Name": "Async",
"Args": {
"configure": [
{
"Name": "Console"
}
]
}
}
]
},
"ConnectionStrings": {
"umbracoDbDSN": "Data Source=(localdb)\\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\\Umbraco.mdf;Integrated Security=True",
"umbracoDbDSN_ProviderName": "Microsoft.Data.SqlClient"
},
"Umbraco": {
"CMS": {
"Global": {
"Id": "89ee9fcb-4391-4d77-8c98-7a21d6dd6fd5",
"SanitizeTinyMce": true,
"UseHttps": true
},
"WebRouting": {
"UmbracoApplicationUrl": "https://localhost:44305"
},
"Content": {
"AllowEditInvariantFromNonDefault": true,
"ContentVersionCleanupPolicy": {
"EnableCleanup": true
}
},
"ModelsBuilder": {"ModelsMode": "Nothing"},
"Runtime": {
"Mode": "Production"
},
"Unattended": {
"UpgradeUnattended": true,
"InstallUnattended": true,
"UnattendedUserName": "REDACTED",
"UnattendedUserEmail": "REDACTED",
"UnattendedUserPassword": "test123456"
},
"Security": {
"AllowConcurrentLogins": false
}
}
}
}
It does show the 'welcome to umbraco' screen, but when you click to go to the login page, the page remains blank with script errors and the error in the log I mentioned above.
https://cdn.discordapp.com/attachments/1334850297603821568/1334884912146157702/image.png?ex=679e27f4&is=679cd674&hm=4055edc8695fb1757cfeabf603841e801d0e8b0af2419fdcab93956edef99cd8&Sebastiaan
01/31/2025, 2:35 PMUseStaticWebAssets
somewhere?Luuk Peters (ProudNerds)
01/31/2025, 2:35 PMSebastiaan
01/31/2025, 2:35 PMSebastiaan
01/31/2025, 2:36 PMSebastiaan
01/31/2025, 2:37 PMLuuk Peters (ProudNerds)
01/31/2025, 2:48 PMSebastiaan
01/31/2025, 3:19 PMSebastiaan
01/31/2025, 3:19 PMMike Chambers
01/31/2025, 9:56 PM<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\IrishLuxuryTours.Web.exe" stdoutLogEnabled="false" stdoutLogFile="\\?\%home%\LogFiles\stdout" hostingModel="inprocess" />
</system.webServer>
</location>
can't remember if it was a smidge issue like you had.. but removing the limiting location sorted our issue.
https://cdn.discordapp.com/attachments/1334850297603821568/1335005681023193099/image.png?ex=679e986d&is=679d46ed&hm=3fc4d64d0489380d9adf41cbc6b5fa7818ccca3d6919993b3235e406926eb7ea&Jason
02/01/2025, 4:54 PMJason
02/01/2025, 4:57 PMLuuk Peters (ProudNerds)
02/01/2025, 5:02 PMJason
02/01/2025, 5:12 PMJason
02/01/2025, 5:15 PMJason
02/01/2025, 5:16 PMLuuk Peters (ProudNerds)
02/01/2025, 5:17 PMkdx-perbol
02/02/2025, 5:28 PMLuuk Peters (ProudNerds)
02/02/2025, 8:13 PMJason
02/02/2025, 8:22 PMLuuk Peters (ProudNerds)
02/02/2025, 8:26 PMSebastiaan
02/03/2025, 7:42 AMdotnet publish -c Release -o E:\Release
to publish in an existing (empty) directory locally in release mode
Then in E:\Release
(or wherever you put it):
dotnet MyProject.dll --urls "https://*:5001"
This will run the published version, you will see no output in the console, which is why I added a URL, so I know where to go: https://localhost:5001/
Think the default port is 5000, but just adding the port number so I am sure where to look if it does not work.kdx-perbol
02/03/2025, 8:43 AM