Activities of "maliming"

hi I think this is same with https://github.com/abpframework/abp/issues/8019#issuecomment-796776155

Can you check?

hi

You can try to disable the telerik source in C:\Users\your name\AppData\Roaming\NuGet\NuGet.Config

> dotnet tool install -g Volo.Abp.Suite --version 4.3.0 --add-source https://nuget.abp.io/<your-private-key>/v3/index.json

Answer

hi

Can you check the logs of your app to see the detail error?

hi

Can I check it remotely?

https://zoom.us/j/91651262888?pwd=aDF2bE5hd0tQQ1M0QWxJeHBTWmp0Zz09

hi

Have you migrated and seeded the database? It seems to be a permission issue.

You can overiide some base class methods of AbpInputTagHelperService in your MyInputTagHelperService .

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpInputTagHelperService.cs

Maybe you can try:

using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers;
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Form;
using Volo.Abp.DependencyInjection;

namespace MyCompanyName.MyProjectName.Web
{
    [Dependency(ReplaceServices = true)]
    [ExposeServices(typeof(AbpInputTagHelperService))]
    public class MyInputTagHelperService : AbpInputTagHelperService
    {
        public MyInputTagHelperService(IHtmlGenerator generator,
            HtmlEncoder encoder,
            IAbpTagHelperLocalizer tagHelperLocalizer)
            : base(generator, encoder, tagHelperLocalizer)
        {
        }

    }

    [Dependency(ReplaceServices = true)]
    [ExposeServices(typeof(AbpInputTagHelper))]
    public class MyInputTagHelper : AbpInputTagHelper
    {
        public MyInputTagHelper(AbpInputTagHelperService tagHelperService)
            : base(tagHelperService)
        {

        }
    }
}

hi

You can try to create a new taghelper and make it executed first.

https://github.com/abpframework/abp/blob/48c52625f4c4df007f04d5ac6368b07411aa7521/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpIdNameTagHelper.cs#L18

hi

Get token with tenant admin and make request to the Export method and get 200 result code ( this must be 403 but returns 200)

Can you check your token claims on https://jwt.io/ ?

hi

You can create a new project then check the code of XXXDbMigrationService

Showing 7111 to 7120 of 7742 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 13:33