Comprehensive Troubleshooting Guide
This guide walks you through common issues and step‑by‑step solutions for our platform. Use the search box below to quickly jump to a topic.
Table of Contents
Login Issues
Problem: “Invalid credentials” despite correct password
Try the following steps:
- Clear browser cache and cookies.
- Reset your password using Password Reset.
- Ensure your account isn’t locked (contact support if needed).
Problem: Two‑factor authentication code not received
Check the following:
- SMS service is active on your phone.
- Authenticator app is synced to server time.
- Request a new code using “Resend Code”.
Slow Performance
Common causes and fixes:
- High CPU usage – close unused tabs or applications.
- Large data sets – enable
paginationorlazy loading. - Network latency – try switching to a wired connection.
// Example: Enable lazy loading
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if(entry.isIntersecting){
const img = entry.target;
img.src = img.dataset.src;
observer.unobserve(img);
}
});
});
document.querySelectorAll('img[data-src]').forEach(img=>observer.observe(img));
Data Synchronization Errors
If data isn’t syncing across devices:
- Check internet connectivity.
- Verify that the
Sync Serviceis running (see Service Status). - Force a manual sync via .
API Errors
Typical HTTP status codes and actions:
| Code | Meaning | Action |
|---|---|---|
| 400 | Bad Request | Check request syntax. |
| 401 | Unauthorized | Refresh token. |
| 500 | Server Error | Retry after 30s. |
User Interface Bugs
If elements appear misaligned or missing:
- Refresh the page (Ctrl+F5).
- Disable browser extensions that modify CSS.
- Report the bug with a screenshot via Support Ticket.