Recent content by Katsuro

  1. Katsuro

    NoOverlightenedTextColor

    Not tested, not sure
  2. Katsuro

    XenForo Wonderful Search [Paid]

    If you don't mind, we can discuss privately installation on your board and see the results. This would also be a great demonstration of addon & Meilisearch performance
  3. Katsuro

    XenForo Wonderful Search [Paid]

    Hello, https://www.meilisearch.com/docs/learn/resources/faq#what-are-the-recommended-requirements-for-hosting-a-meilisearch-instance In case of XFWS (stands for XenForo Wonderful Search), there are many optimizations, caching features in addon, leading instance to not hang out and process every...
  4. Katsuro

    XenForo Wonderful Search [Paid]

    Sure, https://www.blast.hk/search/live-search
  5. Katsuro

    XenForo Wonderful Search [Paid]

    Documentation of Meilisearch is available here. Deployment guideline is mostly described in this page. You probably may want to deploy it using Docker, it's here in the 'Docker' tab. Meilisearch configuration is described here and it's possible to use envvars, configuration file or pass them as...
  6. Katsuro

    XenForo Wonderful Search [Paid]

    Katsuro updated XenForo Wonderful Search with a new update entry: Version 1.1.0 Release Read the rest of this update entry...
  7. Katsuro

    XenForo Wonderful Search [Paid]

    Meilisearch is not that difficult tho, it's possible to deploy it using docker too. I can provide some information and help you to configure it
  8. Katsuro

    XenForo Wonderful Search [Paid]

    Yes, this is a paid add-on Not really, meilisearch is opensource and free and you can easily host it by yourself
  9. Katsuro

    XenForo Wonderful Search [Paid]

    Hello, thanks for attention Yes, sure, there are many forums who ordered and using this addon. None of them had a performance degrade, instead, they liked on how does it perform on their forums Meilisearch is fast enough when it comes to 3-letter words and perform searching of such a content...
  10. Katsuro

    Image attachments are not visible in custom terms and rules thread if forced to re-read terms

    So, if I change terms and rules default link to my own one (for example, to some thread), force users to read & accept them one more time, then, if user goes to custom thread, he won't see any attached images till he accepts terms again. That's a definitely bug and, can be avoided manually by...
  11. Katsuro

    NoOverlightenedTextColor

    Katsuro submitted a new resource: NoOverlightenedTextColor - Recolors any text in messages if text color conflicts with the current style color Read more about this resource...
  12. Katsuro

    XenForo Wonderful Search [Paid]

    Main difference between ElasticSearch and MeiliSearch is the performance. As described in thread and displayed in video above, there's a huge difference between these both There are also many new options in add-on itself, like in Similar threads widget, synonyms, per-node and per-usergroup...
  13. Katsuro

    XenForo Wonderful Search [Paid]

    Yes, it's done and add-on already has this feature
  14. Katsuro

    XF 2.2 White Screen

    sounds like rebuild master data is required go to site.com/install
  15. Katsuro

    Node style override won't update effective style id if deleted

    How about this? $nodes = $this->finder('XF:Node') ->where('style_id', $id) ->fetch(); $db->beginTransaction(); /** @var \XF\Entity\Node $node */ foreach ($nodes AS $node) { $node->style_id = 0; $node->save(true, false); } $db->commit();
Back
Top Bottom