[DigitalPoint] App for Cloudflare®

[DigitalPoint] App for Cloudflare® 1.9.5

No permission to download
what about a help manual ?

1756949600912.webp

would be easy to make (for you).
would look super reassuring for purchasers to see a manual.
users could help keep the documents up to date.

Additionally, maybe a NixFifty's Tickets addon ?

Site looks great. Product seems super solid.
 
what about a help manual ?

View attachment 326471

would be easy to make (for you).
would look super reassuring for purchasers to see a manual.
users could help keep the documents up to date.
Ehhh... I've always been more of the mindset that if something I built needs a manual, it's not good enough and improvements should be made so people aren't needing to read through documentation.


Additionally, maybe a NixFifty's Tickets addon ?
Probably would build my own some scratch if/when I need one. I built one for XenForo 1 back in the day...

1756950560981.webp



Site looks great. Product seems super solid.
Thanks!
 
Ehhh... I've always been more of the mindset that if something I built needs a manual, it's not good enough and improvements should be made so people aren't needing to read through documentation.

Smart approach.

I bet there are some REALLLLY newbie Wordpress admins that you'll encounter.

A nice youtube video going over the options (how easy it is) could be a way to get tire kickers to purchase.
 
Has anyone here already transferred a TB of /data/ files to R2 using rclone?
It's very slow for me, and I think it's being rate limited.

Using this command:
Bash:
rclone copy /var/www/xf2/public/data/ cloudflarer2:xf2-data/ \
-P \
--ignore-existing \
--checksum \
--transfers 48 \
--checkers  48 \
--buffer-size 128M \
--fast-list \
--no-traverse

Any advice?

1757621106766.webp
 
Last edited:
Has anyone here already transferred a TB of /data/ files to R2 using rclone?
It's very slow for me, and I think it's being rate limited.

Using this command:
Bash:
rclone copy /var/www/xf2/public/data/ cloudflarer2:xf2-data/ \
-P \
--ignore-existing \
--checksum \
--transfers 48 \
--checkers  48 \
--buffer-size 128M \
--fast-list \
--no-traverse

Any advice?

View attachment 326936
Where in the world are you? I know there has been some speed issues with R2 in some areas of Europe lately.
 
On the first run, for the first 1-2 minutes, I can maximize my outgoing network speed, which is 1 Gbps, before the slowdown begins forever.
 
I run the same command from an identical copy on a remote backup server located in Utah, US.
Got similar speed; this server is capable of 1 Gbps outgoing also (different dedicated hosting).

Bash:
rclone copy xf2/public/data/ cloudflarer2:xf2-data/ \
-P \
--ignore-existing \
--checksum \
--transfers 48 \
--checkers  48 \
--buffer-size 128M \
--fast-list \
--no-traverse

1757633398854.webp
 
How are you guys handling Access-Control-Allow-Origin for static files under /data/ now served on R2?
Do you allow just your domain or wildcard allow (*)?
 
If you log into the Cloudflare dashboard, go to R2 (it’s at account level, not zone level), then click the bucket and then go to Settings for the bucket, what’s the “Location” set to?
Can this be changed to another location after the bucket is already created?

Edit: From google search AI :|

1757984878009.webp
 
Can this be changed to another location after the bucket is already created?
No, it can't... the only option is to create a new bucket with a specific location called out (by default it just uses "auto" which tends to put it close to your server).

Also, Cloudflare has a weird thing where the bucket itself can't truly be deleted... if you were to empty the bucket and delete it, then you create a new bucket with the same bucket name, it will always be at the location of the original bucket with that bucket name. Basically the only way to get on a different location would be to create a new bucket (with a different bucket name).
 
  • Love
Reactions: rdn
For those who want to clean their /data/ on CF R2:
  • Delete empty directory
  • Delete all index.html
  • Delete folders that contains just index.html
Bash:
rclone delete cloudflare_r2:xenforo-data/ --include "index.html" --max-size 1B --rmdirs -v
 
Back
Top Bottom