I am trying to override the Account template based on this documentation here: https://dev.to/enisn/you-do-it-wrong-customizing-abp-login-page-correctly-l2k, and when I get to the part where I need to download the Account template so I can override it, I am not able to download it:
I have updated ABP CLI, I have updated ABP Studio, I have logged out and logged back in in the CLI, nothing seems to work. It keeps throwing an error, and the error message doesn't print out any useful information that helps me troubleshoot what is going on.
Additionally, I read somewhere that I can grab source files from ABP Suite, but ABP Suite isn't working for me at all. I go to add my solution, and it throws this:
I would ideally like to get this fixed so I can download files via CLI, but worst case scenario I would be ok if you just zipped it up and sent it to my email on file.
Thanks,
Charlie
3 Answer(s)
-
0
The error you are encountering when running abp get-source Volo.Abp.LeptonXTheme is a known issue that has occurred intermittently for some users, especially with certain versions of the ABP CLI and Studio. This is not related to your environment, but rather to the ABP source code server or the specific module/version availability.
The correct command to download the LeptonXTheme source code is:
abp get-source Volo.Abp.LeptonXTheme
(Do not use .Pro at the end; the correct module name is Volo.Abp.LeptonXTheme.)
If you receive an internal error or exception, it is usually a temporary server-side issue. In recent cases, the ABP team has resolved such issues quickly after being notified.
As a workaround, you can try specifying a previous version (e.g., --version 4.2.1) if you do not require the absolute latest, or retry the command after some time.
If you are still unable to download the source code, you should open a support ticket with Volosoft, as this may require intervention on their end to resolve the backend issue.
Downloading via ABP Suite is an alternative, but if Suite is also failing with "An internal error occurred during your request!", it confirms a backend/server-side problem.
You do not need to request a zip file by email; once the backend issue is resolved, the CLI command will work as expected.
For reference and updates, see:
If you need to override the Account template urgently, you may use the files from a previous version if available, or monitor the support thread for updates on the fix.
Sources:
- https://abp.io/docs/latest/ui-themes/lepton-x/
- https://abp.io/support/questions/7811/Commercial-source-code-to-angular-package
This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.
-
0
I did also try with --version 4.2.1, but that didn't work either. I will try this again intermittently in case this is a server error, but if there isn't a server issue, then assistance would be appreciated to get that account template.
-
0
hi
Can you try to:
dotnet tool install -g volo.abp.studio.cli
abp get-source Volo.Abp.LeptonXTheme
orabp get-source Volo.Abp.LeptonXTheme --version 4.2.1
Thanks.