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...
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.
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.
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.
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...
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+...
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...
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...
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.
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...
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...
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...