Base solution for your next web application

Activities of "A4amen"

Answer

It just does not happen.

I need to set invoice info on the tenant side too.

Answer

8.1 MVC .Net Core

My product version is 8.1 I mean theme 4 does not work well on large resolution. On a high resolution the banner image in theme 4 shifts to the left I am using .net core 3.1 MVC

Answer

I read the detait acticle already but the session of Feature Management https://aspnetboilerplate.com/Pages/Documents/Feature-Management#feature-manager contains no detail on how to make a functionality a feature or not. I would like to know if I add a new functionality to my app, how can I make that functionality a feature or not.

Answer

Hi,. I already checked that link I got 404 and it is still the same.

I also have this same issue with the latest version v8.0 in production. Kindly share the solution please.

I changed it in the host project only.

The actual fix was to change the launchsettings From: "applicationUrl": "http://localhost:22742/" To "applicationUrl": "http://127.0.0.1:22742/". Chrome seams to be careful about cookies set by localhost. Thanks.

I am login at this URL http://localhost:22742/Ui/Login

With these details default admin 123qwe true

When I step through the code I notice when it reaches the line below (in bold) the user object is null therefore it returns me to login over and over and over.

Kingly help me please

[DisableAuditing] public async Task<IActionResult> Index() { var model = new HomePageModel { LoginInformation = await _sessionCache.GetCurrentLoginInformationsAsync(), IsMultiTenancyEnabled = _multiTenancyConfig.IsEnabled };

if (model.LoginInformation?.User == null)
{
    return RedirectToAction("Login");
}

return View(model);

}

Showing 1 to 10 of 12 entries