Activities of "alper"

To reproduce the problem, we need some extra info:

Your project name:

Template options:

  • UI Framework: MVC / Angular
    • (If MVC) Tiered: Yes / No
    • (If Angular) Separated Identity Server: Yes / No
  • Database Provider: EF Core / MongoDB

Entity JSON

  • Write us your entity JSON. It's located here => %UserProfile%\.abp\suite\{Your-Project-Name}\entities\{Your-Entity-Name}.json

The problem is dependency! Cannot resolve parameter 'Gmcs.Themis.ScreenBuilder.Samples.ISampleAppService' Check that SampleAppService is registered correctly.

ISampleAppService.cs

public interface ISampleAppService : IApplicationService
{
         
}

SampleAppService.cs

public class SampleAppService  : ApplicationService, ISampleAppService
{
         
}

1-run the below command in CMD

del %UserProfile%\.abp\cli\access-token.bin && del %UserProfile%\.\AppData\Local\Temp\AbpLicense.bin

2-then

abp login <username> -p <password>

3-then try again:

abp suite
Answer

you can customize the user interface per your tenants / users / or any other conditions. See https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-User-Interface

see https://support.abp.io/QA/Questions/5#answer-a7176f3f-c297-c06c-0923-39f30889b0c3 basically clearing the local storage and session storage should fix it.

I've created a Gist with 6 steps to implement this feature. https://gist.github.com/ebicoglu/04cedc99d0365f4d20a6233cca69cf5b

Note:
This guideline will be a document after next release (April 4, 2020). And the URL will be https://docs.abp.io/en/commercial/latest/guides/implementing-passwordless-authentication

How to connect ASP NET Core self-signed HTTPS development certificate? [Chrome Fix]

To trust .NET self signed SSL certificates, perform the following one-time step. Close all your browsers and open command prompt, write:

dotnet dev-certs https --trust

This will allow to trust the self-signed ASP NET Core HTTPS development certificate in your computer. A confirmation prompt will be displayed if the certificate was not previously trusted. Click yes on the prompt to trust the certificate.


If you want to clear your existing HTTPS certificates. Open command prompt, write:

dotnet dev-certs https –clean

Google Chrome uses the Certificate Store on Windows for validating certificates, therefore when you run the command, Chrome will not complain about the certificate anymore!

References:

  • https://www.hanselman.com/blog/DevelopingLocallyWithASPNETCoreUnderHTTPSSSLAndSelfSignedCerts.aspx
  • https://docs.microsoft.com/en-us/aspnet/core/security/enforcing-ssl
  • https://docs.microsoft.com/en-us/xamarin/cross-platform/deploy-test/connect-to-local-web-services#create-a-development-certificate

hi,

how do you build for production?

The package Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared is on NuGet . It should find it from https://www.nuget.org/packages/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/

Check your NuGet.Config. The order of the package sources are important. It should be first "nuget.org" then "ABP Commercial NuGet Source"

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <packageSources>
        <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
        <add key="ABP Commercial NuGet Source" value="https://nuget.abp.io/*************/v3/index.json" />
    </packageSources>
</configuration>

Don't forget to replace your private API Key (/*************/)

this issue has been fixed in v2.4 (coming on April 3, 2020)

Showing 1901 to 1910 of 1957 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 05:21