Oh ya, I completely forgot about that. 😂
In that case, check your rules. You could also use their Trace tool to figure out what application or rule is blocking the request.
This addon won’t change anything there. It controls your Cloudflare settings, but you can do that in your dashboard. Probably you have your “security level” set too high on your zone settings. For XenForo, it should be “essentially off”. It doesn’t make your site more secure (it’s a terrible...
Edit the profile_less_macros template. Add whatever color you want to the .username--verified:after section and you could just remove the whole .username--at:before section to remove the @.
Display names are never required and not all users can even have display names (it’s based on their user group settings). The “@“ isn’t a placeholder, it’s a designation you are seeing a username.
If you are just trying to avoid ever displaying the @, it’s an easy CSS edit to remove it from...
I haven't tested it, but I believe this should do it:
$config['fsAdapters']['data/video'] = function()
{
return \XF\FsMounts::getLocalAdapter('data/video');
};
data/video is more granular than just data, so that should allow you to use an R2 bucket for data, but then override data/video...
Which BBCode HTML are you adding a condition to that it's not working? If you wanted to do something simple like make the SPOILER tag not show the content unless the user is logged in, you could simply edit the bb_code_tag_spoiler template and change this:
{$content}
to this:
<xf:if...
If it’s happening 100% of the time, I’d double check your API token has the correct permissions and also make sure the domain your site is on is within that Cloudflare account (you can’t edit Cloudflare settings for a domain/zone that doesn’t exist on the Cloudflare account that your API token...
That’s not an API limit error, rather the API calls worked, but have unexpected results. Could be a temporary issue on Cloudflare’s side.
Is it still happening?
Why not put the Clear-Site-Data: cache header in a different thread/sub-request? Like you log out and an AJAX request is triggered to clear the cache. While I haven't tested it, I'd think you could effectively delete the cache without the user being aware of the slowness of that request? 🤷🏻♂️...
You are allowed 1200 API requests per 5 minutes. If you are hitting that, it’s from something else… it’s for your whole Cloudflare account, so other API calls for other things possibly? You’d need to really try hard to hit 1200 calls in 5 minutes with this addon. Like multiple windows open and...
Well, you could do some trickery with Cloudflare Page Rules, like only allow them to be downloaded if the user requesting it has a certain cookie or block certain user agents or something. If you went down the road of presigned URLs, you lose the ability for them to be edge cached... so they are...