Recent content by mattrogowski

  1. M

    [TH] User Criteria Extended [Deleted]

    I checked up on it and it looks like we had some trouble deploying the site so we've not been able to remove the messages - the coupons are no longer valid but the addons can still be purchased. I appreciate it's confusing it shows the notice still, but I don't have a solution for that currently...
  2. M

    [TH] User Criteria Extended [Deleted]

    I thought we had recently removed all of these, I’ll check if there’s a reason it’s still showing.
  3. M

    XF 2.3 Members currently online and DM's

    The triangle icon means they're seeing an error (no permissions) page.
  4. M

    XF 2.3 Consolidating custom user field choice options

    Even with database access you'd probably need an addon anyway as the user values are cached in xf_user_profile so would need to be rebuilt too. Could maybe do it with a search and replace but probably not ideal.
  5. M

    [TH] Connected Account Providers [Deleted]

    We're not offering them for free with coupons any more (there's still some references to them we're working to remove), but they can still be purchased.
  6. M

    XF 2.3 What are the precise php.ini settings required for Xenforo 2.3.6?

    You'd probably need to share the errors as it's unlikely to be anything to do with php.ini configuration. It's more likely to be outdated addons and/or themes.
  7. M

    Blocked users should have read permissions

    Yeah, there's a flag in the user table for if they're banned and that's checked on every page and throws a generic error (as Kirby just pointed out as I was typing lol). So to let them still do something, they'd need to not be banned and just be put in a group with restricted permissions. It's...
  8. M

    Blocked users should have read permissions

    If they're banned it won't override permissions. You'd need to not ban them and just put them in that group.
  9. M

    Confirmed Inefficient reaction cache rebuild on username change

    Huh, I can’t tell an X from a K apparently lol. Either way, it’s definitely an inefficient process and needs a rethink one way or another. Even without an account delete addon that we’re using, users changing their username on very active forums would have a similar impact. We have 1000+...
  10. M

    Confirmed Inefficient reaction cache rebuild on username change

    On a large forum with some 22 million posts and very high reaction usage, coupled with high volume of username changes (mostly from a high volume of account deletions), the process to update the reaction user cache on content is painfully inefficient and leads to frequent table locks that then...
  11. M

    XF 2.3 User whose membership period has expired

    This sounds like you're still manually editing the groups on the user directly instead of applying a user upgrade. XF would always add them as secondary groups, but that isn't a conscious decision you would need to make. If you're applying a user upgrade, XF will remove the groups when it...
  12. M

    XF 2.3 Pop-up Window After Posting Replies

    Will be due to this: https://xenforo.com/community/threads/message-js-and-action-js-load-order-causes-error.228313/ Some javascript files have to be included in a certain order otherwise this happens.
  13. M

    Classes extending another class won't use extension system

    Can't think how else to word that. Not sure if this is strictly speaking a bug but it's a general design issue I think. Take following example: XF\Service\User\PasswordReset holds most of the logic for resetting passwords. XF\Service\User\SecurityLockReset extends PasswordReset If you extend...
  14. M

    XF 2.3 Issue with post-XXX anchor: Page scrolls to the post date in Article threads, even if it's the only post

    Would you not just... use the standard thread link in this situation? Why would you be using the post link if you didn't want it to jump to the post? If you're using a post link, jumping to that post would be the expected behaviour. Feels like creating a problem that doesn't need to exist and...
  15. M

    XF 2.2 Where is the code for the style of the default file upload button "Choose File"?

    You can't style it, it's rendered by the browser/OS, the same as radio buttons and the list of options in select fields, and the text comes from your browser. You need awkward hacks to create a new element on top that has your styling and then make the original one invisible, so clicking the...
Back
Top Bottom