Recent content by akok

  1. akok

    AI Search (formerly AutoRAG)

    Hey everyone, I’ve noticed that Cloudflare now offers an “AI Search” feature (formerly AutoRAG) that lets you build a site search powered by AI. Has anyone here tried it yet? How well does it work in practice? Any setup tips or feedback on accuracy and speed would be great to hear...
  2. akok

    LLMO SEO Indexing AI Addon [Deleted]

    https://xenforo.com/community/threads/llmo-seo-indexing-on-xenforo-2-3-7.233598/
  3. akok

    LLMO SEO Indexing AI Addon [Deleted]

    Are there any pitfalls when installing on more or less large forums?
  4. akok

    RM 2.2 APK file

    Is packing in a zip archive not suitable?
  5. akok

    xf session activity is full - a clear answer

    I originally installed XenForo 1 and have only applied updates since then, and I may have missed the point when the xf_session_activity table became standard in InnoDB. This table is active: it is filled with short-lived data and cleared using XenForo’s hourly cleanup. The following is strictly...
  6. akok

    xf session activity is full - a clear answer

    You can add steps. 1. Increase database data limits. 2. Convert the table xf_session_activity to innodb. This is a pretty bad solution, but it works.
  7. akok

    How to deal with spam?

    I’ll add some more information: Sometimes registrations are performed by humans, and only afterwards the bot creates threads. When a thread is created, the user remains inactive because the request is made programmatically. Below is a snippet of the log showing a successful false positive...
  8. akok

    FraudClient - Report Spam

    When trying to interact with a mod for xenforo I get an error GuzzleHttp\Exception\ClientException: FraudClient API error: Client error: `POST https://fraudclient.com/api.php?action=search_client_reports` resulted in a `403 Forbidden` response: <!DOCTYPE html><html lang="en-US"><head><title>Just...
  9. akok

    Users Getting Blocked Due To ModSecurity

    The action plan is simple: Switch the WAF to detection-only mode. Identify and exclude rules that cause false positives by reviewing the logs. Depending on the ruleset (COMODO or OWASP), the latter has significantly more false positives. Without excluding rules in ModSecurity, you won’t be...
  10. akok

    Fixed Macro style_variation_macros::picture does not support lazy loading

    I'll update the topic, 2.3.6 has already been released, but there are no edits in the template and arg-lazy="{{ false }}">
  11. akok

    Known Bots

    In this case, is it possible to update the database and publish it as an archive/file?
  12. akok

    XF 2.3 3k+ 'Blocked due to other 4xx issue' in Google Search Console

    Decided to sum things up a bit. I couldn't figure out the add-on, and I have no desire to figure it out at all. So I decided to return 410 errors using .htaccess. I disabled the ability for guests to switch style variations, and for registered users I didn't see any uninvited 410 errors...
  13. akok

    Fixed no support for markdown headings

    I decided to remind you that the problem with headings in markdown has not been solved since 2020 old topic https://xenforo.com/community/threads/is-it-possible-to-add-missing-markdown-headings.185467/ # Заголовок 1 ## Заголовок 2 ### Заголовок 3
  14. akok

    Adding noindex to the error page

    For now I have settled on the decision to prohibit indexing of pages with errors <xf:if is="$template == 'error'"> <meta name="robots" content="noindex" /> </xf:if>
Back
Top Bottom