Start a conversation

Troubleshooting Article - Mobile Issues

Overview

Users might experience problems while using Kayako Classic on mobiles such as being unable to log in or having the iOS app swipe-to-delete functionality not behaving as intended or the messages containing HTML code. This article explains how to correctly troubleshoot those issues.

 

Workflow

Mobile_app_not_working.png

 

Instructions


Check app and device details

When one encounters a problem with one of the mobile apps, there are a couple of areas that need to be reviewed right away.

 

Review URL details

One of the most likely reasons for the login to fail besides using incorrect credentials is when one is trying to connect to the incorrect URL. The article Error 'Unable to log in: Failed to connect' When Using the Mobile Application goes into detail on which areas need to be reviewed.

 

Cleaning up the sessions table

Check the count for old session records by executing the following query:

SELECT COUNT(*) FROM swsessions;

If the query execution time takes several seconds and the count shows a huge record volume, the solution is to clean up their sessions table.

Example output:

SELECT COUNT(*) FROM swsessions;
+----------+
| COUNT(*) |
+----------+
| 2188969 |
+----------+
1 row in set (27.621 sec)

In the above example, the sessions table has well over 2 million records which is a lot. The recommendation, in this case, is to run this query to delete session records older than 2 weeks:

Note: We always recommend backing up your database before performing any manual operations such as this one.

DELETE FROM swsessions WHERE lastactivity < 1638511200;

 

Review swipe to delete behavior

If one is experiencing unexpected behavior with the swipe to delete functionality in iOS and is already using the latest version, it is necessary to review the Problem with the iOS Swipe to Delete Function as the behavior might be intended.

Contact support

If the problem persists after following the guidelines above, one can Contact Support with the information below to further troubleshoot the issue.

 

Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted
  3. Updated

Comments