Connectivity Issues
Troubleshoot network and connection problems with DZDESK.
Connection Problems
Cannot Access DZDESK
Symptoms:
- Page won't load
- "Cannot reach site" error
- Timeout errors
Diagnosis Steps:
-
Check your internet
- Try other websites
- Check network status
-
Check DZDESK status
- Visit status page (if available)
- Check for announcements
-
Try different network
- Mobile hotspot
- Different WiFi
-
Check firewall/proxy
- Corporate firewall may block
- VPN may interfere
Solutions:
- Restart your network connection
- Clear DNS cache
- Try direct connection (no VPN)
- Contact IT if corporate network
Intermittent Connection
Symptoms:
- Works sometimes, not others
- Random disconnections
- Slow then fast
Diagnosis Steps:
-
Check network stability
- Run continuous ping
- Monitor connection
-
Check browser
- Try different browser
- Disable extensions
-
Check other applications
- Same issue elsewhere?
Solutions:
- Restart browser
- Restart router/modem
- Use wired connection
- Contact ISP if persistent
API Connection Issues
API Requests Failing
Symptoms:
- API calls timeout
- Connection refused
- SSL errors
Diagnosis Steps:
-
Verify endpoint URL
https://api.dzdesk.com/v1/ -
Check authentication
- Valid API key?
- Token expired?
-
Test with curl
curl -v https://api.dzdesk.com/v1/me \
-H "Authorization: Bearer YOUR_TOKEN" -
Check SSL certificate
- Certificate valid?
- Not expired?
Solutions:
- Verify API URL
- Refresh authentication token
- Check firewall rules
- Verify SSL/TLS settings
Rate Limiting
Symptoms:
- HTTP 429 errors
- "Too many requests"
- Temporary blocks
Solutions:
- Implement backoff strategy
- Reduce request frequency
- Cache responses where possible
- Contact support for limit increase
SSL/TLS Issues
Certificate Errors
Symptoms:
- "Your connection is not private"
- Certificate warnings
- SSL handshake failed
Common Causes:
-
Clock sync issue
- Computer time wrong
-
Corporate inspection
- SSL interception
-
Outdated browser
- Old TLS versions
Solutions:
- Sync system clock
- Install corporate certificate
- Update browser
- Check with IT department
TLS Version Issues
DZDESK requires:
- TLS 1.2 minimum
- TLS 1.3 preferred
If using old systems:
- Update browser
- Update operating system
- Check client library versions
Corporate Network Issues
Firewall Blocking
Symptoms:
- Works outside office
- Blocked at work
- Filtered content
Required Access:
| Domain | Port | Purpose |
|---|---|---|
| app.dzdesk.com | 443 | Web application |
| api.dzdesk.com | 443 | API access |
| *.dzdesk.com | 443 | All services |
Solutions:
- Request firewall exception
- Provide domain list to IT
- Test from different network
Proxy Issues
Symptoms:
- Works without proxy
- Fails through proxy
- Authentication issues
Solutions:
- Configure proxy settings
- Whitelist DZDESK domains
- Use proxy authentication if required
- Contact network admin
WebSocket Issues
Real-Time Updates Failing
Symptoms:
- Notifications delayed
- Updates not appearing
- Manual refresh required
Diagnosis:
- Check browser console for WebSocket errors
- Verify WebSocket not blocked
- Check proxy WebSocket support
Solutions:
- Enable WebSocket in firewall
- Configure proxy for WebSocket
- Fall back to polling (automatic)
Mobile Connectivity
Mobile App/Browser Issues
Symptoms:
- Works on WiFi, not mobile
- Slow on cellular
- Frequent disconnections
Solutions:
- Check cellular data enabled
- Try stronger signal area
- Disable data saver mode
- Clear mobile browser cache
Diagnostic Tools
Network Testing
Ping test:
ping api.dzdesk.com
DNS test:
nslookup api.dzdesk.com
HTTPS test:
curl -I https://api.dzdesk.com
Browser Tools
- Open Developer Tools (F12)
- Go to Network tab
- Look for failed requests
- Check error details
When to Contact Support
Contact support if:
- Issue persists after troubleshooting
- Affects multiple users
- Started suddenly
- Error messages unclear
Provide:
- Error messages/screenshots
- Network environment details
- When issue started
- Steps already tried
Related Topics
- Common Issues - General troubleshooting
- API Authentication - API setup