The Sodium stuff is only used as part of the email events. So if it pops up again, you could disable tracking of emails being opened and everything else will still function.
Yep, not sure... like I said, at the most basic level, the encryption key isn't 32 bytes when it goes to be used (for whatever reason). Don't know anything about your site or what other addons or server software you are running, so can't really offer much else as far as ideas as to why. If it...
Another possibility would be some sort of corruption going on if you are using a cache for XenForo (for example Redis or Memcached) where options are being read from there rather than the database and it's returning incorrect data. That seems rather far fetched though... just throwing out random...
If it's a one-off site, you can enable development mode and edit the formatting parameters for the style property...
step=100
min=100
max=900
If you want to get trickier, you could build an addon that changes the formatting parameters (although not sure if those would get reset on a XenForo...
Well somehow your baAnalyticsKey option went missing or got corrupt somehow (assuming Sodium was installed and working when you installed the addon). You can run this query to see what the value is:
SELECT * FROM xf_option WHERE option_id = 'baAnalyticsKey' LIMIT 1;
option_value should be...
Did you by chance instead a new version of PHP? Specifically one that now has Sodium support where your old version didn’t?
When the addon is installed, it generates an encryption key if Sodium is supported. If it’s not supported when it’s installed, the encryption key can’t be created.
If...
You have another part of your Nginx config that's affecting it. The XenForo config is additive to the rest of your Nginx config (meaning it adds to the config, it doesn't override everything else already there). The fact that the request never makes it to XenForo shows that the web server is...
Not sure... are you using the latest version of XenForo? Looks like it was an issue that was fixed, but way back in XenForo 2.1. I'm not able to replicate it on my sites.
https://xenforo.com/community/threads/source-map-error-request-failed-with-status-404.154411/
As far as the .JS thing, you...
You don't normally need to do that unless you have an (arguably) poorly configured web server setup that is blindly intercepting .js requests without checking if the file actually exists or not.
The above will tell your web server to not intercept that specific request, but a better solution is...
They are probably just doing stuff. 🤷🏻♂️
Maybe they are trying to figure out how to make XF 2.4 faster, but it's a tough problem to solve because 2.3 is so fast fast (even when testing it in the worst possible scenario... ****ty phone on a ****ty connection and no browser cache), that the only...
It can, but you would need to enable it (installing addon doesn’t make it happen just from installing). R2 can be used for data and/or internal_data folders, keeping permission checking intact.