Recent content by Improvs

  1. Improvs

    Report Improvements by Xon

    This improvement allow me to remove report?
  2. Improvs

    [021] Multi-account detector [Deleted]

    How to remove user from evercookies or other detection?
  3. Improvs

    XF 2.1 Sql query (finder) assistance

    I've created getter inside Entity: $structure->getters['retrieve_money_allow'] = ['getter' => 'getRetrieveMoneyAllow', 'cache' => true]; public function getRetrieveMoneyAllow() { $now = time(); $allowedTime = time() - 15 * 86400; if ($this->action_buyed_at <= $allowedTime) {...
  4. Improvs

    XF 2.1 Sql query (finder) assistance

    Hello. Is it possible to add extra select sql to xenforo Finder query? For example, I have XF finder query like this: $BuyerFinder = \XF::finder('MK\Store:Buyer') ->with('Thread', true) ->with('User', true) ->where('stage', 'active') ->fetch($limit, $offset); I need to improve...
  5. Improvs

    XF 2.1 What is xf-rebuild:threads really doing?

    My problem is slow request processing. As example, recently (1 week ago) it takes 10-20 seconds to rebuild phrases due importing. But currently it takes about 10-15 minutes to rebuild phrases. I have only 2 languages installed. The same problem due threads rebuilding via CLI, it can take...
  6. Improvs

    XF 2.1 What is xf-rebuild:threads really doing?

    Hi, can anyone explain me what rebuild threads job realy do? I got a problem, my server doing all kinds of rebuild job very very... slow (using CLI) and we can't find a reason with system administrator. So, We're trying to understand what kind of processes this job do. The same problem with...
  7. Improvs

    [XM] XR Product Manager Layouts [Paid]

    Compatible with xf 2.2 ?
  8. Improvs

    Tooltip Improvements

    5 years have passed. Are there any XF Tooltips solutions for the mobile?
  9. Improvs

    Similar threads [Paid]

    Hi, I have a lot of threads in my xf_thread and i'm using debug to see slow queries. Is it a good idea to add mysql index to thread title?
  10. Improvs

    XF 2.0 Proper way to return JSON

    That part working fine, I got json response and can see them inside post request. But how can I show json data in teamplate? How xf script working? <a href="mypathToAction" class="myclass" title="mytitle" data-xf-click="bookmark-click"...
  11. Improvs

    Anybody running PHP 8?

    Is XF v2.1.4 compatible with php 8?
  12. Improvs

    [AddonsLab] Post Limit Per Node

    Hello, thank you for your job. I noticed one unpleasant moment. When I post reply, page reloading. It's okey for specific node where I need to use this restrictions, but this happens in all forums. As I understand, that happens here: if ($thread->getRemainingItemCount() < 2)...
  13. Improvs

    [Andrew] Soft Deletion Requires Reason

    And what about hard delete? I need to see moderator reason also during hard deleting. Is it possible?
  14. Improvs

    XF 2.1 Memcached how to set and get?

    Hi, trying to figure out how to set and get key-value with memcached. For example, I have the PHP function which return some different counters (total ids, answers, questions, filters). For this and similar cases l would like to use lifetime cache. As I understand, memcached PHP extention...
  15. Improvs

    [OzzModz] Private Threads [Paid]

    All settings are set by default. All threads are public. I have 60k threads on my board and ~100k messages. When the plugin is disabled I have 170 queries inside forum_list view. Then enabled -> 238.
Top Bottom