We've fixed this problem and it will be available with v5.3.1.
This issue can be reproduced when you are trying to save some error (the exception which happens in your application). Have you reproduced this case?
Yes, I tried in that case but couldn't reproduce the problem. If it's possible can you share your class that implements the IAuditingStore
?
Hi, if you have the yarn.lock
file in the blazor server project directory, can you delete it and re-run the abp install-libs
command?
Can you create a
docs-langs.json
file in the /docs directory of your repository (like https://github.com/abpframework/abp/blob/dev/docs/docs-langs.json):{ "Languages":[ { "DisplayName" : "Icelandic", "Code" : "is", "IsDefault": true } ] }
Its there https://github.com/Ibeinni/docs or am I misunderstanding? I do not have a docs folder but only a docs repository.. is that it?
It seems you already created it, my bad sorry. Can you change the root URL to https://github.com/Ibeinni/docs/tree/{version}/is
and add an index.md file under the is directory and then try it again?
Can you create a docs-langs.json
file in the /docs directory of your repository (like https://github.com/abpframework/abp/blob/dev/docs/docs-langs.json):
{
"Languages":[
{
"DisplayName" : "Icelandic",
"Code" : "is",
"IsDefault": true
}
]
}
I've created an application with v5.0 and implemented the IAuditingStore
interface and save records by using the IAuditLogRepository
. Then, upgraded the application to v5.1.2 and I still could save records to the database and didn't face with any problems.
Can you share your class that implements the IAuditingStore
?
Hi, if it's possible can you share the content of the ITXWebModule
class?
I think I need the source for Basic.cshtml and Account.cshtml that are used in my Pro version 4.4. Would you be able to let me have those?
You can get the source code of the Lepton Theme (it's available for team license) and override it to your needs. I close this question since it seems you've successfully overridden the login and register pages. Please create a new question for further questions/problems.
Can you add the following tag-helper namespaces to your _ViewImports.cshtml
file (/Pages/Account/_ViewImports.cshtml):
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling
@addTagHelper *, Owl.reCAPTCHA
Hi, thanks for the explanation. I'll check and write you back asap.