Hi again and sorry for the late response, I've created a repository and go with the same structure as yours.
I've used "Branches" as my Github Version Provider source, instead of "Releases". See my rel-1.0 branch So your root URL should be -> "https://github.com/Ibeinni/docs/tree/{version}/" and main website url should be -> "/"
Configure<DocsElasticSearchOptions>(options =>
{
options.Enable = true;
});
Configure<DocsUiOptions>(options =>
{
options.RoutePrefix = null; //it need to be null otherwise documents prefix is added the url
options.ShowProjectsCombobox = false;
});
Enabling ElasticSearch is optional, however, it's good for full-text search, so maybe you also want to enable it. I've also set route-prefix as null because otherwise "documents" prefix is added to the URL.
Then I opened the admin project and pull documents from there. Then I could successfully see my document text on the website.
Hi @EngincanV have you had time to create this repository?
Hi, sorry for the late response. I'll create a new repository and share the necessary steps with you to integrate with Docs Module during the day.
Hi @Sturla, we are sorry for that and we are aware of it's a bad experience for you but it was caused by the obfuscation process while releasing and it was almost impossible to find the problem at that stage. We've addressed the problem and fixed it but we need to release a new version (5.3.1) and we'll release it asap. Sorry for this kind of problem and thanks for your patience.
This error was caused after the obfuscation process when released the v5.3.0. To fix this problem, maybe you can try to disable the polls feature by using the GlobalFeatures
:
GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
{
cmsKitPro.Disable<PollsFeature>();
});
@EngincanV you got something else for me to try out?
I'll create a repository and try to integrate it with the docs module and share the steps with you.
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?