skip to Main Content

Laravel 11: BindingResolutionException: Target class [hash] does not exist during app bootstrap

I have just created a fresh Laravel project and installed Sentry for exception logging. Here is my bootstrap/app.php: <?php use IlluminateFoundationApplication; use IlluminateFoundationConfigurationExceptions; use IlluminateFoundationConfigurationMiddleware; use IlluminateSupportFacadesAuth; use SentryLaravelIntegration; use SentryStateScope; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( web: __DIR__ . '/../routes/web.php', commands:…

VIEW QUESTION

Nginx – django.security.csrf: Forbidden (Origin checking failed – https://sentry.domain.com does not match any trusted origins.)

django.security.csrf: Forbidden (Origin checking failed - https://sentry-domain.com does not match any trusted origins.) I installed self-hosted-master sentry from https://github.com/getsentry/self-hosted based on documentation on: https://theappsguy.dev/setting-up-sentry-self-hosted I configured it for SSL with changing: nginx/nginc.conf: from proxy_set_header X-Forwarded-Proto https; (instead $shema); to proxy_set_header…

VIEW QUESTION

FLutter web : sentry did not translate correctly issues

I am using sentry on my project. after adding its dependencies I added its configuration on main dart: void main() { runZonedGuarded(() async { await setupSentrySameZone( "https://d88a433.....ingest.us.sentry.io/4507...."); runApp( SentryWidget( child: DefaultAssetBundle( bundle: SentryAssetBundle(), child: EasyLocalization( supportedLocales: LocalizationConst.supportedLocales, path: LocalizationConst.localesPath, fallbackLocale:…

VIEW QUESTION
Back To Top
Search