2016-01-13 08:55:42 +01:00
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/setup.rst">Edit me on GitHub</a></div>
|
|
|
|
|
|
|
|
=============================
|
|
|
|
Troubleshooting and debugging
|
|
|
|
=============================
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
General tips on debugging Converse
|
|
|
|
==================================
|
2016-01-13 08:55:42 +01:00
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
When debugging Converse, always make sure that you pass in ``debug: true`` to
|
2016-01-13 08:55:42 +01:00
|
|
|
the ``converse.initialize`` call.
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
Converse will then log debug information to the browser's developer console.
|
2016-01-13 08:55:42 +01:00
|
|
|
Open the developer console and study the data that is logged to it.
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
`Strope.js <http://strophe.im/>`_ the underlying XMPP library which Converse
|
2016-01-13 08:55:42 +01:00
|
|
|
uses, swallows errors, so that messaging can continue in cases where
|
|
|
|
non-critical errors occur.
|
|
|
|
|
|
|
|
This is a useful feature and provides more stability, but it makes debugging
|
|
|
|
trickier, because the app doesn't crash when something goes wrong somewhere.
|
|
|
|
|
|
|
|
That's why checking the debug output in the browser console is so important. If
|
|
|
|
something goes wrong somewhere, the error will be logged there and you'll be
|
|
|
|
able to see it.
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
Additionally, Converse will in debug mode also log all XMPP stanzas
|
2016-01-13 08:55:42 +01:00
|
|
|
(the XML snippets being sent between it and the server) to the console.
|
|
|
|
This is very useful for debugging issues relating to the XMPP protocol.
|
|
|
|
|
|
|
|
For example, if a message or presence update doesn't appear, one of the first
|
|
|
|
things you can do is to set ``debug: true`` and then to check in the console
|
|
|
|
whether the relevant XMPP stanzas are actually logged (which would mean that
|
2018-09-18 10:53:43 +02:00
|
|
|
they were received by Converse). If they're not logged, then the problem is
|
2016-01-13 08:55:42 +01:00
|
|
|
more likely on the XMPP server's end (perhaps a misconfiguration?). If they
|
2018-09-18 10:53:43 +02:00
|
|
|
**are** logged, then there might be a bug or misconfiguration in Converse.
|
2016-01-15 06:58:34 +01:00
|
|
|
|
|
|
|
Performance issues with large rosters
|
|
|
|
=====================================
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
Effort has been made to benchmark and optimize Converse to work with large
|
2016-01-15 06:58:34 +01:00
|
|
|
rosters.
|
|
|
|
|
|
|
|
See for example the benchmarking tests in `spec/profiling.js
|
|
|
|
<https://github.com/jcbrand/converse.js/blob/master/spec/profiling.js>`_ which
|
|
|
|
can be used together with the `profiling features of
|
|
|
|
Chrome <https://developer.chrome.com/devtools/docs/cpu-profiling>`_ to find
|
|
|
|
bottlenecks in the code.
|
|
|
|
|
|
|
|
However, with large rosters (more than 1000 contacts), rendering in
|
2018-09-18 10:53:43 +02:00
|
|
|
Converse slows down a lot and it may become intolerably slow.
|
2016-01-15 06:58:34 +01:00
|
|
|
|
|
|
|
One simple trick to improve performance is to set ``show_only_online_users: true``.
|
|
|
|
This will (usually) reduce the amount of contacts that get rendered in the
|
|
|
|
roster, which eases one of the remaining performance bottlenecks.
|
|
|
|
|
2018-09-24 09:52:09 +02:00
|
|
|
404 response for an OPTIONS request
|
|
|
|
===================================
|
|
|
|
|
|
|
|
This often happens when trying to upload a file to the XEP-0363 file server
|
|
|
|
which is under a different domain or port than the one that's hosting Converse.
|
|
|
|
|
|
|
|
An OPTIONS request usually a so-called
|
|
|
|
`CORS pre-flight request <https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/OPTIONS#Preflighted_requests_in_CORS>`_
|
|
|
|
which is used by the browser to find out whether the endpoint supports
|
|
|
|
`Cross-Origin Resource Sharing (CORS) <https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS>`_.
|
|
|
|
|
|
|
|
If you get a 404 response for such a request, then the endpoint does NOT
|
|
|
|
support CORS and the browser will prevent requests from being made to it.
|
|
|
|
|
|
|
|
This will prevent you from uploading images to it.
|
|
|
|
|
|
|
|
Take a look at the section ":ref:`CORS`" for more information on how to solve this problem.
|