November Happy Hour will be moved to Thursday December 5th.
Hello,
After upgrading to CMS 12 and deploying to a new site, the Azure blob objects are not loading. I made sure it is using the right provider...
services.AddAzureBlobProvider(o => { o.ContainerName = "qdsitemedia"; });
Anything else I need to make sure of?
Thanks
Daman
Did you add connection string to appsettings.json
Is it not supposed to get the connection string from the Azure portal?
If you are deploying to DXP than you need to follow these steps
public class Startup { public void ConfigureServices(IServiceCollection services, IConfiguration configuration) { ... services.AddCmsCloudPlatformSupport(configuration); } }
Hello,
After upgrading to CMS 12 and deploying to a new site, the Azure blob objects are not loading. I made sure it is using the right provider...
services.AddAzureBlobProvider(o =>
{
o.ContainerName = "qdsitemedia";
});
Anything else I need to make sure of?
Thanks
Daman