Activities of "Anjali_Musmade"

Hello,

If you are facing issue for v7.2.2 then update your ABP version to v7.2.3 (follow above steps) and create new project and try to run.

I have checked at my end the application is working fine in both 7.2.2 and 7.2.3 versions.

thanks,

Hello,

There is no need to update to 7.2.3 version of ABP. You just need to update that Volo.Abp.AspNetCore.MVC.UI.MultiTenancy package through Nuget package manager like.

After this clean solution, rebuild and run it will work.

thanks

Hello,

sorry for late, Can you please confirm once have you followed the steps provided above? If you install ABP v7.3.2 then why you are using update command, you just have to install it. In above steps first 3 steps are to uninstall previous version and next 3 steps are to install desired version, you may change it and after that no need to use update command.

If you want to upgrade your previous version application/ project to newer version that time you need to follow migration guides https://docs.abp.io/en/abp/latest/Migration-Guides/Index

Thanks.

Hello,

please check out https://www.npmjs.com/package/@craftsjs/perfect-scrollbar?activeTab=readme and also check version.

thanks

Hello , Please check below codes one.

  1. http-error-handler.ts
import { ContentProjectionService, PROJECTION_STRATEGY } from '@abp/ng.core';
import { ToasterService } from '@abp/ng.theme.shared';
import { HttpErrorResponse } from '@angular/common/http';
import { Injector } from '@angular/core';
import { of, EMPTY } from 'rxjs';
import { Error404Component } from './error404/error404.component';

export function handleHttpErrors(injector: Injector, httpError: HttpErrorResponse) {
  if (httpError.status === 400) {
    const toaster = injector.get(ToasterService);
    toaster.error('You Choose Bad request!', '400');
    return EMPTY;
  }

  if (httpError.status === 404) {
    const contentProjection = injector.get(ContentProjectionService);
    contentProjection.projectContent(PROJECTION_STRATEGY.AppendComponentToBody(Error404Component));
    return EMPTY;
  }

  return of(httpError);
}

2.app.module.ts

  declarations: [AppComponent,Error404Component],
  providers: [APP_ROUTE_PROVIDER, BOOKS_BOOK_ROUTE_PROVIDER,{ provide: HTTP_ERROR_HANDLER, useValue: handleHttpErrors }],

3 . Look Like

Thank you.

Hello,

You can download source code from Abp suite from modules just like

or by using cli command

abp get-source Volo.Abp.LeptonXTheme.Pro

Thanks

You can check this issue https://support.abp.io/qa/questions/6107/3a0eb5c3-8fa3-d418-542f-60116801cab1.

For me its working fine can you please check once code at your end.

Hello ,

You can check this issue https://support.abp.io/qa/questions/6107/3a0eb5c3-8fa3-d418-542f-60116801cab1.

Thank you.

Hello ,

You can check this similar issue https://support.abp.io/QA/Questions/6220/Customize-HTTP-Error-Handler

Thank you.

Hello,

could you please share Backend error logs

thanks

Showing 271 to 280 of 1094 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 27, 2024, 06:34