Troubleshooting
Connection Problems
Troubleshooting connectivity issues
Solutions for connection and authentication problems.
Google OAuth Issues
"Authorization Failed"
- Clear browser cookies
- Try incognito mode
- Check pop-up blocker
- Verify correct Google account
"Access Denied"
- Ensure you have GBP access
- Check Owner/Manager permissions
- Try different Google account
"Token Expired"
- Click "Reconnect Google"
- Re-authorize access
- Tokens refresh automatically
API Connection Issues
"Connection Refused"
- Check internet connection
- Verify firewall isn't blocking
- Try:
curl https://api.synoveo.com/health
"Timeout"
- Check server status
- Try again in a few minutes
- Large operations may take longer
"SSL Error"
- Update browser/OS
- Check date/time settings
- Disable VPN temporarily
WordPress Plugin Connection
"Invalid Credentials"
- Re-copy Client ID and Secret
- Remove extra spaces
- Regenerate credentials if needed
"Domain Mismatch"
- API key domain must match site URL
- Include or exclude www consistently
- Check for trailing slashes
"Can't Reach API"
// Test connectivity
$response = wp_remote_get('https://api.synoveo.com/health');
if (is_wp_error($response)) {
echo $response->get_error_message();
}Dashboard Issues
"Page Won't Load"
- Clear browser cache
- Disable browser extensions
- Try different browser
- Check console for errors
"Session Expired"
- Log in again
- Check if logged in elsewhere
- Clear cookies
Network Debugging
Check API Status
Visit: https://api.synoveo.com/health
Check DNS
nslookup api.synoveo.comCheck Connectivity
curl -I https://api.synoveo.com/health