Activities of "alper"

Answer

Running fresh Application template 4.4.0-rc2

2021-07-10 13:27:27.733 +04:30 [INF] Executing endpoint 'Volo.CmsKit.Admin.Menus.MenuItemAdminController.GetListAsync (Volo.CmsKit.Admin.HttpApi)' 
2021-07-10 13:27:27.733 +04:30 [INF] Route matched with {area = "cms-kit", action = "GetList", controller = "MenuItemAdmin", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.ListResultDto`1[Volo.CmsKit.Menus.MenuItemDto]] GetListAsync() on controller Volo.CmsKit.Admin.Menus.MenuItemAdminController (Volo.CmsKit.Admin.HttpApi). 
2021-07-10 13:27:27.734 +04:30 [INF] Start processing HTTP request GET "https://localhost:44341/api/cms-kit-admin/menu-items?api-version=1.0" 
2021-07-10 13:27:27.734 +04:30 [INF] Sending HTTP request GET "https://localhost:44341/api/cms-kit-admin/menu-items?api-version=1.0" 
2021-07-10 13:27:27.746 +04:30 [INF] Received HTTP response headers after 12.4761ms - 500 
2021-07-10 13:27:27.746 +04:30 [INF] End processing HTTP request after 12.5795ms - 500 
2021-07-10 13:27:27.769 +04:30 [ERR] ---------- RemoteServiceErrorInfo ---------- 
{ 
  "code": null, 
  "message": "An internal error occurred during your request!", 
  "details": null, 
  "data": {}, 
  "validationErrors": null 
} 
 
2021-07-10 13:27:27.769 +04:30 [ERR] An internal error occurred during your request! 
Volo.Abp.Http.Client.AbpRemoteCallException: An internal error occurred during your request! 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.ThrowExceptionForResponseAsync(HttpResponseMessage response) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.MakeRequestAsync(IAbpMethodInvocation invocation) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.MakeRequestAndGetResultAsync[T](IAbpMethodInvocation invocation) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.GetResultAsync(Task task, Type resultType) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.InterceptAsync(IAbpMethodInvocation invocation) 
   at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) 
   at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) 
   at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() 
   at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) 
   at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) 
   at lambda_method2699(Closure , Object ) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.&lt;InvokeNextActionFilterAsync&gt;g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.&lt;InvokeInnerFilterAsync&gt;g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.&lt;InvokeNextExceptionFilterAsync&gt;g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) 
2021-07-10 13:27:27.769 +04:30 [ERR] Code: 
2021-07-10 13:27:27.769 +04:30 [ERR] Details: 
2021-07-10 13:27:27.769 +04:30 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. 
2021-07-10 13:27:27.770 +04:30 [INF] Executed action Volo.CmsKit.Admin.Menus.MenuItemAdminController.GetListAsync (Volo.CmsKit.Admin.HttpApi) in 36.2805ms 
2021-07-10 13:27:27.770 +04:30 [INF] Executed endpoint 'Volo.CmsKit.Admin.Menus.MenuItemAdminController.GetListAsync (Volo.CmsKit.Admin.HttpApi)' 
2021-07-10 13:27:27.770 +04:30 [INF] Request finished HTTP/2 GET https://localhost:44396/api/cms-kit-admin/menu-items application/json - - 500 - application/json;+charset=utf-8 45.5405ms 
 

@hitaspdotnet if you have installed cms-kit module, you need to add the following code block into the ConfigureServices of your BookStoreDomainSharedModule.cs

            GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit =>
            {
                cmsKit.EnableAll();
            });

            GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
            {
                cmsKitPro.EnableAll();
            });

then add migration

Answer

Running fresh Application template 4.4.0-rc2

2021-07-10 13:27:27.733 +04:30 [INF] Executing endpoint 'Volo.CmsKit.Admin.Menus.MenuItemAdminController.GetListAsync (Volo.CmsKit.Admin.HttpApi)' 
2021-07-10 13:27:27.733 +04:30 [INF] Route matched with {area = "cms-kit", action = "GetList", controller = "MenuItemAdmin", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.ListResultDto`1[Volo.CmsKit.Menus.MenuItemDto]] GetListAsync() on controller Volo.CmsKit.Admin.Menus.MenuItemAdminController (Volo.CmsKit.Admin.HttpApi). 
2021-07-10 13:27:27.734 +04:30 [INF] Start processing HTTP request GET "https://localhost:44341/api/cms-kit-admin/menu-items?api-version=1.0" 
2021-07-10 13:27:27.734 +04:30 [INF] Sending HTTP request GET "https://localhost:44341/api/cms-kit-admin/menu-items?api-version=1.0" 
2021-07-10 13:27:27.746 +04:30 [INF] Received HTTP response headers after 12.4761ms - 500 
2021-07-10 13:27:27.746 +04:30 [INF] End processing HTTP request after 12.5795ms - 500 
2021-07-10 13:27:27.769 +04:30 [ERR] ---------- RemoteServiceErrorInfo ---------- 
{ 
  "code": null, 
  "message": "An internal error occurred during your request!", 
  "details": null, 
  "data": {}, 
  "validationErrors": null 
} 
 
2021-07-10 13:27:27.769 +04:30 [ERR] An internal error occurred during your request! 
Volo.Abp.Http.Client.AbpRemoteCallException: An internal error occurred during your request! 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.ThrowExceptionForResponseAsync(HttpResponseMessage response) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.MakeRequestAsync(IAbpMethodInvocation invocation) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.MakeRequestAndGetResultAsync[T](IAbpMethodInvocation invocation) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.GetResultAsync(Task task, Type resultType) 
   at Volo.Abp.Http.Client.DynamicProxying.DynamicHttpProxyInterceptor`1.InterceptAsync(IAbpMethodInvocation invocation) 
   at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) 
   at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) 
   at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() 
   at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) 
   at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) 
   at lambda_method2699(Closure , Object ) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.&lt;InvokeNextActionFilterAsync&gt;g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.&lt;InvokeInnerFilterAsync&gt;g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) 
   at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.&lt;InvokeNextExceptionFilterAsync&gt;g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) 
2021-07-10 13:27:27.769 +04:30 [ERR] Code: 
2021-07-10 13:27:27.769 +04:30 [ERR] Details: 
2021-07-10 13:27:27.769 +04:30 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. 
2021-07-10 13:27:27.770 +04:30 [INF] Executed action Volo.CmsKit.Admin.Menus.MenuItemAdminController.GetListAsync (Volo.CmsKit.Admin.HttpApi) in 36.2805ms 
2021-07-10 13:27:27.770 +04:30 [INF] Executed endpoint 'Volo.CmsKit.Admin.Menus.MenuItemAdminController.GetListAsync (Volo.CmsKit.Admin.HttpApi)' 
2021-07-10 13:27:27.770 +04:30 [INF] Request finished HTTP/2 GET https://localhost:44396/api/cms-kit-admin/menu-items application/json - - 500 - application/json;+charset=utf-8 45.5405ms 
 

MVC, Angular or Blazor? Did you upgrade an existing solution or add the cms-kit via Suite?

Answer

I installed a 4.4.rc2 installation

Did the DBMigrations.

When I tried to run the .Web program for the first time

AbpException: Could not find the bundle file '/libs/abp/core/abp.css' for the bundle 'Lepton.Global'!

I couldn't reproduce this for MVC template. Check if you installed 4.4.rc2

Answer

External provider SSO login is broken on the ABP site and our projects if you already have a local account.

Clicking SSO on login page takes me to a prefilled register page.

If I submit this page I get an error account already exists.

Note the register page doesn't even have the SSO buttons.

Proper flow should simply login with any provider with matching email address (you shouldn't have to remember which provider you used.)

This is a critical bug for us along with the dbmigrator issue I've already reported.

you need to register your email address after navigating back to abp.io from the 3rd party website. this is by design.

is this resolved?

can you give more details?

this is an Angular issue (apart from abp.io) you can build your Angular project with a custom configuration name, and it'll use that environment

yarn ng build --configuration=uat
environment.uat.ts

see https://angular.io/guide/build

are the 2 fields coming from backend?

closing the issue. reopen it if your issue will not be fixed

1- you can add the source-code and remove the item also remove the backend code (hard) 2- you can use entity action extensions to hide it

Showing 781 to 790 of 2058 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 23, 2025, 10:47