Installationsanleitungen
Flowsery Analytics in einem Replit-Projekt einrichten
Replit unterstützt viele Frameworks und wird mit einem KI-Assistenten ausgeliefert, der Ihren Code ändern kann. Sie können Replit Agent verwenden, um Flowsery Analytics Tracking in Ihre Webanwendung einzubetten.
Schritt 1: Tracking-Zugangsdaten finden
Öffnen Sie Ihre Flowsery Analytics Website-Einstellungen und kopieren Sie Ihre Website-ID (z.B. "flid_**").
Diese Werte erscheinen in Ihrem Tracking-Snippet:
HTML
<script defer data-fl-website-id="flid_******" src="https://cdn.flowsery.com/main.js"></script>HTML
Help me integrate Flowsery Analytics into my web project. I need this tracking script added to work across my entire application:
<script defer data-fl-website-id="flid_******" src="https://cdn.flowsery.com/main.js"></script>
Implementation based on my project type: - HTML/CSS/JS projects: Add to the
<head>
section of index.html and all pages - React projects: Use proper Script component in the main layout - Next.js projects: Add Script component to
_app.js or layout - Express/Node.js: Include in your template engine or static HTML files - Python Flask/Django: Add to base template head section
Requirements: - Script must load on every page/route - Preserve the defer attribute - Use the exact source URL: https://cdn.flowsery.com/main.js
Please implement this and show me exactly what changes you made to which files. ```bash ## Schritt 3: Implementierung testen Nachdem Replit Agent
die Änderungen übernommen hat: 1. **Projekt ausführen** -- Klicken Sie auf Replits Run-Button, um die Anwendung zu starten 2. **Vorschau öffnen** --
Sehen Sie die App in Replits Webview an oder öffnen Sie die öffentliche URL 3. **Analytics überprüfen** -- Beobachten Sie Ihr Flowsery Analytics
Dashboard auf Besucherdaten Für weitere Optionen wie Localhost-Tracking, benutzerdefinierte API-Endpunkte oder Cross-Domain-Konfiguration lesen Sie
die [Script-Konfigurationsreferenz](/docs/script-configuration). ## Fehlerbehebung mit Replit Agent Wenn das Tracking nicht funktioniert: ```html
The Flowsery Analytics tracking doesn't seem to be working. Can you help debug this? Please verify: 1. What type of project am I running? (React,
HTML, Next.js, etc.) 2. Which files did you modify to add the analytics? 3. Is the script loading in the browser's developer tools? 4. Will it track
visitors on all pages of my site? The analytics should connect to: https://cdn.flowsery.com/main.js With my website ID: flid_****** Please fix any
implementation issues you find.
</head>Häufige Probleme:
- Script nur auf einer Seite statt global hinzugefügt
- Falsche Datei für das Framework des Projekts geändert
- Tracking in Replits Entwicklungsvorschau nicht aktiv
- Projekt nicht öffentlich zugänglich für Tests