troubleshooting.rst 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .. raw:: html
  2. <div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/setup.rst">Edit me on GitHub</a></div>
  3. =============================
  4. Troubleshooting and debugging
  5. =============================
  6. General tips on debugging Converse
  7. ==================================
  8. When debugging Converse, always make sure that you pass in ``debug: true`` to
  9. the ``converse.initialize`` call.
  10. Converse will then log debug information to the browser's developer console.
  11. Open the developer console and study the data that is logged to it.
  12. `Strope.js <http://strophe.im/>`_ the underlying XMPP library which Converse
  13. uses, swallows errors, so that messaging can continue in cases where
  14. non-critical errors occur.
  15. This is a useful feature and provides more stability, but it makes debugging
  16. trickier, because the app doesn't crash when something goes wrong somewhere.
  17. That's why checking the debug output in the browser console is so important. If
  18. something goes wrong somewhere, the error will be logged there and you'll be
  19. able to see it.
  20. Additionally, Converse will in debug mode also log all XMPP stanzas
  21. (the XML snippets being sent between it and the server) to the console.
  22. This is very useful for debugging issues relating to the XMPP protocol.
  23. For example, if a message or presence update doesn't appear, one of the first
  24. things you can do is to set ``debug: true`` and then to check in the console
  25. whether the relevant XMPP stanzas are actually logged (which would mean that
  26. they were received by Converse). If they're not logged, then the problem is
  27. more likely on the XMPP server's end (perhaps a misconfiguration?). If they
  28. **are** logged, then there might be a bug or misconfiguration in Converse.
  29. Performance issues with large rosters
  30. =====================================
  31. Effort has been made to benchmark and optimize Converse to work with large
  32. rosters.
  33. See for example the benchmarking tests in `spec/profiling.js
  34. <https://github.com/jcbrand/converse.js/blob/master/spec/profiling.js>`_ which
  35. can be used together with the `profiling features of
  36. Chrome <https://developer.chrome.com/devtools/docs/cpu-profiling>`_ to find
  37. bottlenecks in the code.
  38. However, with large rosters (more than 1000 contacts), rendering in
  39. Converse slows down a lot and it may become intolerably slow.
  40. One simple trick to improve performance is to set ``show_only_online_users: true``.
  41. This will (usually) reduce the amount of contacts that get rendered in the
  42. roster, which eases one of the remaining performance bottlenecks.
  43. File upload is not working
  44. ==========================
  45. One of the most common causes for file upload not working is a lack of CORS
  46. support by the file server to which the file should be uploaded.
  47. CORS stands for `Cross-Origin Resource Sharing (CORS) <https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS>`_
  48. and is a technique for overcoming browser restrictions related to the
  49. `same-origin security policy <https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy>`_.
  50. For example, if the domain under which you host Converse is *example.org*,
  51. but the domain of your of your HTTP file server (for `XEP-0363 HTTP File Upload <https://xmpp.org/extensions/xep-0363.html>`_)
  52. is *upload.example.org*, then the HTTP file server needs to enable CORS.
  53. If you're not sure what the domain of the HTTP file server is, take a look at
  54. the console of your browser's developer tools.
  55. You might see an error like this one::
  56. Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://example.de:5443/...
  57. You might also see a 404 HTTP response for an OPTIONS request in the `Network Tab` of your browser's developer tools.
  58. An OPTIONS request is usually a so-called
  59. `CORS pre-flight request <https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/OPTIONS#Preflighted_requests_in_CORS>`_
  60. which is used by the browser to find out whether the endpoint supports
  61. `Cross-Origin Resource Sharing (CORS) <https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS>`_.
  62. If you get a 404 response for such a request, then the endpoint does NOT
  63. support CORS and the browser will prevent requests from being made to it.
  64. This will prevent you from uploading files to it.
  65. How you solve a CORS-related issue depends on your particular setup, specifically it depends on
  66. what you're using as the HTTP file server.
  67. CORS is enabled by adding an ``Access-Control-Allow-Origin`` header, so you'll
  68. have to configure your file server to add this header.