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

Sentry Flutter Plugin : cannot find symbol

Since I have upgraded flutter, I am getting this error : /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java:179: error: cannot find symbol flutterEngine.getPlugins().add(new io.sentry.flutter.SentryFlutterPlugin()); ^ symbol: class SentryFlutterPlugin location: package io.sentry.flutter I have upgraded all plugins and run flutter clean. Build.gradle : implementation 'io.sentry:sentry-android:6.34.0'

VIEW QUESTION
Back To Top
Search