Recent content by pegasus

  1. pegasus

    [XenCustomize] Project Tracker [Paid]

    This seems really promising as a replacement for vBulletin Project Tools. However, there is one major issue that's been holding us back from converting our project tools installation to a XenForo solution. For XenCustomize, I see: Can these visibility options be changed individually per item...
  2. pegasus

    VaultWiki [Paid]

    pegasus updated VaultWiki with a new update entry: 4.1.10 Patch Level 1 Read the rest of this update entry...
  3. pegasus

    VaultWiki [Paid]

    pegasus updated VaultWiki with a new update entry: Changes in 4.1.10 Read the rest of this update entry...
  4. pegasus

    VaultWiki [Paid]

    pegasus updated VaultWiki with a new update entry: Changes in 4.1.9 Read the rest of this update entry...
  5. pegasus

    VaultWiki [Paid]

    pegasus updated VaultWiki with a new update entry: Changes in 4.1.8 Read the rest of this update entry...
  6. pegasus

    VaultWiki [Paid]

    I will look into that problem. In the future if you have issues using a part of the support web site, a better place is to post/contact the support web site directly (if possible) or to message a support person (like me) directly. Please try to limit this thread to general discussions of the...
  7. pegasus

    VaultWiki [Paid]

    Changelog is here: https://www.vaultwiki.org/pages/Book/Documentation/VW4:Changelog-for-4-1-10 I will add a link within the release article. The changelog should also be available as a button from the wiki version notification in your AdminCP, which is actually better as it filters changes...
  8. pegasus

    VaultWiki [Paid]

    In the wake of the recent server downtime, "we have extended licenses by an additional 7 days from the date of extension, for anyone with a timed license that was active during the affected period, even if that license expired between the downtime and the extension. That means that for any...
  9. pegasus

    VaultWiki [Paid]

    Thanks. We had a failed Linux update. Hard to tell the exact reason the OS failed to boot, but it seemed likely due to overreliance on symlinks for system configuration files (which became outdated or disconnected). Unfortunately we had to rebuild the server from scratch, and apparently our...
  10. pegasus

    Undefined Removal Order and Behavior caused by XF.off

    When using the Javascript method XF.off to remove an event listener from a known element, the method removes a matching handler from XF.eventHandlers even though the evaluated handler may actually belong to a different element, usually when multiple elements share the same handler. At first...
  11. pegasus

    XF 1.4 Restoring a deleted users conversations

    I just had to do this for one of my users. I needed to add them as a recipient to all conversations where they previously made messages or that they were previously recipients to (need to check for both). The code that worked was: // change the following lines as needed $olduserid = 1...
  12. pegasus

    The "xf_content_activity_log" table is deadlock-prone

    I think this occurs when you have multiple users replying to the same thread within the same second. The new-post transactions overlap slightly and manage to deadlock on this single-row insert (which, taken alone, is basically as optimized against deadlocks as it can be). The only solutions I...
  13. pegasus

    Fixed Passkeys are not deleted when a user

    Could be wrong, but if we get a cleanup query, I would expect the following to be more performant, since it doesn't involve a subquery with a full scan on xf_user, just the full scan on xf_passkey: DELETE passkey FROM xf_passkey AS passkey LEFT JOIN xf_user AS user ON (passkey.user_id =...
  14. pegasus

    XF 2.3 AI crawlers causing xf_session_activity table to reach limit

    There were 2 main issues I found causing the AI bots (mainly from Brazil) to bring my site to a halt: #1 xf_session needed to be changed to InnoDB This prevented the site from crashing around ~25k concurrent bots. But it also allowed more bots to come. Within hours, the site crashed around ~60k...
  15. pegasus

    VaultWiki [Paid]

    This BB-Code will create a hyperlink to the wiki page called "wiki.item". To embed a VaultWiki entry, you may want to use XenForo's EMBED BB-Code, same as for forum posts and other content, which embeds a preview of content wrapped with the premade widget block you're used to. As with other...
Back
Top Bottom