Find solutions to common problems you might encounter when using Quickleap.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/dishant0406/quickleap/llms.txt
Use this file to discover all available pages before exploring further.
DNS and domain setup
My domain isn't redirecting
My domain isn't redirecting
- DNS not configured correctly
- Verify DNS records point to Quickleap’s servers
- DNS propagation can take 24-48 hours
- Use a DNS checker tool to verify propagation
- Domain not verified
- Complete the verification process before DNS changes
- Verification typically requires a TXT record or file upload
- Incorrect domain format
- Use the root domain without protocol:
example.comnothttps://example.com - Don’t include paths:
example.comnotexample.com/page
- Use the root domain without protocol:
HTTPS certificate errors
HTTPS certificate errors
- Certificate still provisioning
- SSL certificates take 10-60 minutes to provision after DNS verification
- Check domain verification status to confirm completion
- DNS records incomplete
- Both A and AAAA records must be configured
- CAA records might block certificate issuance
- Mixed domain configuration
- Both www and non-www versions need separate verification if used
Domain verification fails
Domain verification fails
- Verification record not found
- TXT record not added to DNS
- TXT record added to wrong subdomain
- DNS cache hasn’t updated
- Domain already claimed
- Domain verified by another account
- Previous verification not removed
- DNS provider issues
- Some providers take longer to propagate changes
- Cloudflare proxying can interfere with verification
Subdomains not working
Subdomains not working
- Create a redirect for the subdomain:
sub.example.com - Verify the subdomain separately
- Configure DNS records for the subdomain
Redirect configuration issues
Redirects not preserving URL paths
Redirects not preserving URL paths
oldsite.com/page redirects to newsite.com instead of newsite.com/page.Solution: Enable path forwarding when creating or updating the redirect:Query parameters not being forwarded
Query parameters not being forwarded
oldsite.com?utm_source=email redirects to newsite.com without the query parameters.Solution: Enable query forwarding:Wrong redirect type being applied
Wrong redirect type being applied
"redirectType": "permanent"→ 301 redirect"redirectType": "temporary"→ 302 redirect
Destination URL formatting issues
Destination URL formatting issues
- Missing protocol: Use
https://example.comnotexample.com - Trailing slashes: Be consistent -
https://example.com/pagevshttps://example.com/page/ - Double slashes: With path forwarding enabled,
https://example.com/+/pagecreateshttps://example.com//page
Rule-based redirect problems
Rules not triggering as expected
Rules not triggering as expected
-
Check rule status
- Ensure status is
"active"not"inactive"or"draft"
- Ensure status is
-
Verify rule priority
- Lower priority numbers execute first
- A higher-priority rule might be matching before your intended rule
- Check for catch-all rules (no conditions) with high priority
-
Test rule evaluation
-
Review condition logic
- AND logic requires all conditions to match
- OR logic requires at least one condition to match
- Verify operator choice matches your intent
Geographic rules not working
Geographic rules not working
- Country code format
- Use ISO 3166-1 alpha-2 codes:
"US"not"USA"or"United States" - Common codes: US, GB, DE, FR, JP, AU, CA
- Use ISO 3166-1 alpha-2 codes:
- VPN/proxy interference
- Users on VPNs appear from different locations
- Test without VPN to verify rule logic
- Case sensitivity
- Use uppercase for country codes:
"US"not"us"
- Use uppercase for country codes:
A/B test percentages not splitting evenly
A/B test percentages not splitting evenly
- Small sample size
- Need at least 100-200 visits per variant for statistical reliability
- Daily fluctuations are normal with low traffic
- Conditions affecting distribution
- Rules with conditions only apply to matching traffic
- Other higher-priority rules might be intercepting traffic
- Percentage validation
- Percentages must sum to 100
- Each variant must have percentage > 0
Time-based rules not activating
Time-based rules not activating
- Timezone issues
- Dates are interpreted in UTC
- Convert local time to UTC when setting dates
- Date format
- Use ISO 8601 format:
"2026-03-01T00:00:00Z" - Include the
Zsuffix for UTC
- Use ISO 8601 format:
- Rule status
- Rule must be
"active"even during the date range - Draft rules never trigger regardless of dates
- Rule must be
Query parameter rules not matching
Query parameter rules not matching
-
Missing param field
-
Case sensitivity
- Parameter names are case-sensitive
utm_source≠UTM_SOURCE
-
Value matching
- Values must match exactly (unless using contains/starts_with)
- URL encoding might affect matching
Analytics data issues
No analytics data appearing
No analytics data appearing
- Sampling rate set to 0
- Sampling rate of 0 disables analytics
- Set to 1.0 for 100% tracking
- Recent setup
- Analytics appear within 5-10 minutes of first traffic
- Check date range in analytics queries
- Bot traffic filtered
- Known bots are filtered from analytics by default
- Check bot analytics separately
Analytics showing incorrect geographic data
Analytics showing incorrect geographic data
- GeoIP accuracy limitations
- Country-level accuracy: ~99%
- City-level accuracy: ~60-80%
- Mobile/cellular IPs less accurate than fixed-line
- VPN and proxy traffic
- Users on VPNs appear from VPN server location
- Corporate proxies can skew location data
- CDN or caching layer
- Traffic through CDNs might show CDN location
Device or browser analytics seem wrong
Device or browser analytics seem wrong
- User agent parsing limitations
- Some obscure browsers may be misidentified
- Modified user agents affect detection
- Bot traffic
- Bots may masquerade as browsers
- Check bot analytics separately
Date range filters not working
Date range filters not working
2026-03-01 to 2026-03-07 includes data from both dates.Performance issues
Slow redirect response times
Slow redirect response times
- Complex rule evaluation
- Many rules with complex conditions increase evaluation time
- Regex operators slower than simple equality checks
- DNS issues
- Slow DNS resolution at destination
- Check destination domain’s DNS performance
- Network latency
- Geographic distance between user and redirect servers
- Destination server response time
High analytics query latency
High analytics query latency
- Large date ranges
- Queries over 90+ days process more data
- Use smaller date ranges or pagination
- High-traffic redirects
- Millions of hits require more processing
- Use appropriate sampling rates
API and integration issues
Authentication errors
Authentication errors
- Verify authentication token is valid and not expired
- Check that token is included in request headers
- Ensure correct API endpoint URL
Rate limiting errors
Rate limiting errors
- Implement exponential backoff retry logic
- Reduce request frequency
- Batch requests when possible
- Contact support for higher rate limits on paid plans
Validation errors when creating rules
Validation errors when creating rules
- Percentage sum validation
- A/B test variant percentages must sum to 100
- Invalid attribute/operator combinations
- Not all operators work with all attributes
- Use getAttributesAndOperators to see valid combinations
- Missing required fields
- Query param conditions require
paramfield - Range operators require array with 2 values
- Query param conditions require