Hi,
You can add a new favicon to the ~/wwwroot/favicon.svg and ~/wwwroot/favicon.ico paths to override the current favicon.
For the favicon, we are also able to replace the file, but for some reason while on the login page we still see the default LeptonX favicon.
If you have a separate auth-server, then you should also add the related favicon to the auth-server project too. This might be the reason for that.
Icon displayed on top of the side menu (programmatic way)
You can update the small-icon that is shown when the menu collapses via CSS as follows: (pass the URL to the lpx-logo-icon prop)
:root .lpx-theme-dark,
:root .lpx-theme-dim {
--lpx-logo-icon: url('/assets/images/logo/logo-light-thumbnail.png');
}
:root .lpx-theme-light {
--lpx-logo-icon: url('/assets/images/logo/logo-dark-thumbnail.png');
}
As far as I know, there is no programmatic way for that. I'll confirm that.
Regards.
Hi, we have documentation for that, which you can read at https://abp.io/docs/9.2/guides/migrating-from-open-source
You have two options;
Both options are explained in the documentation.
Regards.
Hi, after splitting the solution, it is working fine, I cannot see hangfire in .Web_Int now, thanks for the support.
Great to hear that, thanks :)
Hi,
Can you share how you configured your Background Jobs in your each application? Including
.Weband.Web_IntNormally, if you disable job execution, it shouldn't even be triggered. It seems some misconfiguration.
I checked, this is happening as my application layer is shared between both solutions, I believe I need to split both solutions.
Hi @priyankasynapxe, did you do that? What's the last status of this?
Thanks, it is working fine now! :-)
Great to hear that :)
Regards.
When will the new version be released with this issue fixed?
Actually, there's no specific release date yet, but it's likely to be sometime this week for ABP Studio.
Ok, now the breakpoint works inside of
AddAbpCookieConsentAt first, however, nothing appeared on the website (just an empty
AbpCookieConsentwidget).Btw, you should also add app.UseAbpCookieConsent() in your request pipeline.
To add
app.UseAbpCookieConsent()in theOnApplicationInitializationmethod makes the difference. This is very important. And the order is also very important. I had it at the end first, but that didn't work. Now I have it afterapp.UseAuthentication();and then it works.Some very important information that I think is missing in the documentation. Please add them so that others don't stumble across the same errors.
Thank you @EngincanV for your help.
Hi, thanks for pointing that out. Indeed, it seems we forgot to mention that. I'll update the documentation.
Regards.
Thanks for reporting the issue, it's a known issue and we've fixed it. In the meantime, as a quick workaround, you can check https://github.com/abpframework/abp/issues/22658#issuecomment-2809189458 and apply it.
Hi, can you please run the following command and then try to re-create the microservice template?
npm install -g npx@latest
If it does not fix your problem, then please share all details such as ABP Studio version, options that you selected, and any other additional options.
Regards.
Hi, thanks for reporting this. Indeed, it should be under the controllers folder. I'll create an issue for that, but can you share your solution structure, so we can better test it?