Could you check if any browser console error and also check Logs.txt in Host/App_Data/Logs
Hi @TimMackey you are right. I created an issue for this: <a class="postlink" href="https://github.com/aspnetzero/documents/issues/57">https://github.com/aspnetzero/documents/issues/57</a>
If you download merged solution, then host and angular folder are the same. So you should run yarn command on Host project folder.
Hi @grep13, could you check Dockerfile in *.Web.Mvc project if microsoft/aspnetcore version is correct?
I think, your project .net version is 2+
And also check this : <a class="postlink" href="https://github.com/aspnet/aspnet-docker/issues/322">https://github.com/aspnet/aspnet-docker/issues/322</a>
You should find some logs to understand better. First, you can look at outputs/Mvc-Logs/Logs/Logs.txt or better way get docker container logs to get detailed information, like this:
docker logs [OPTIONS] CONTAINER
You should see logs at same place in live environment. Of course you should allow write access to your deployment folder.
Hi @affern, you can check related code in account/language-switch.component.ts
changeLanguage(language: abp.localization.ILanguageInfo) {
abp.utils.setCookieValue(
'Abp.Localization.CultureName',
language.name,
new Date(new Date().getTime() + 5 * 365 * 86400000), // 5 year
abp.appPath
);
location.reload();
}
Hi @ultimatemm, We will do it, but it is in a long term plan. There are some other feature that we will be develop before. So it isn't possible to estime the timeline.
Is there any console error in browser?
Hi @vrpatlola we suggest to use yarn instead of npm install. Check this: <a class="postlink" href="https://aspnetzero.com/Documents/Getting-Started-Angular#restore-packages">https://aspnetzero.com/Documents/Gettin ... e-packages</a>
Could you try following 3 steps?
Hi @vrpatlola, what is your project version? Could you remove node_modules folder, then run yarn command before npm start command?