KB – Troubleshooting

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:

  1. Clear browser cache and cookies.
  2. Reset your password using Password Reset.
  3. 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 pagination or lazy 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:

  1. Check internet connectivity.
  2. Verify that the Sync Service is running (see Service Status).
  3. Force a manual sync via .

API Errors

Typical HTTP status codes and actions:

Code Meaning Action
400Bad RequestCheck request syntax.
401UnauthorizedRefresh token.
500Server ErrorRetry 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.