yes @downpw
Verified
Posts
-
[NODEBB] Help for my custom CSS -
[NODEBB] Help for my custom CSSYou use custom version of Font Awesome ?
-
[NODEBB] Help for my custom CSS
Since the latest update, all my icons have disappeared. Could you please advise how to restore them?
-
Cloud StorageFor EU-based, end-to-end encrypted cloud storage, here are the strongest options beyond what you’re already using:
Tresorit (Switzerland) : Probably the gold standard for E2EE. Zero-knowledge, Swiss/EU data residency, excellent for both file sync and secure sharing. More expensive than competitors but very polished and audited.
Filen (Germany) : Zero-knowledge E2EE by default, generous free tier (10GB), very competitive pricing on paid plans, and lifetime plans available. Open-source clients. Popular on the privacy subreddits as a Proton Drive alternative.
Internxt (Spain) : Open-source, zero-knowledge E2EE, GDPR-based. Offers storage plus a few extra privacy tools. Lifetime plans available. Younger company, so weigh that against the price.
pCloud (Switzerland, registered in EU) : Massive caveat: E2EE is not default. It’s a paid add-on called “pCloud Crypto.” Without it your files are encrypted at rest but not zero-knowledge. The draw is genuine lifetime plans, which can be cost-effective over years if you trust their longevity.
-
Cloud StorageCan anyone recommend a Cloud storage service preferably in the EU.
I’ve had a good look on reddit, there seems to be a lot of choice, many aren’t end to end encrypted for example storing photos this feels like a must from a privacy perspective, I know a lot say self host but I’d have no idea where to start.
Currently using zeitkapsl for my photo’s, they are an Austrian based company.
I have the Proton suite, which includes a VPN, mail, drive etc. Realistically I’m seeking to only use a few of Proton’s products as I don’t want to rely on one service incase I lose my data etc.
There’s a good website here with alternatives - https://euroalternative.eu
Thank you!
-
Nodebb to Xenforo -
Nodebb to XenforoHello, I have an active forum running on NodeBB and I would like to migrate it to XenForo. Is this possible, and how can I do it?
I don’t believe there’s an official NodeBB to XF importer.
You’ll have to create one yourself or would first need to convert to software we do have an importer for :
-
Nodebb to XenforoHello, I have an active forum running on NodeBB and I would like to migrate it to XenForo. Is this possible, and how can I do it?
-
What’s going on with NodeBB?@cagatay The most reliable way to upgrade Node.js on Ubuntu depends on how you originally installed it.
Method 1: Using NVM (Recommended)
If you already use Node Version Manager (NVM), upgrading is simple. NVM allows you to keep both versions and switch between them if needed.
- Install Node 22:
nvm install 22 - Switch to Node 22:
nvm use 22 - Set it as your default:
nvm alias default 22 - Verify the change:
node -v
Method 2: Using NodeSource (PPA)
If you installed Node.js via
aptusing the NodeSource repository, you need to update the repository script to point to the new version.- Remove the old NodeSource list (optional but cleaner):
sudo rm /etc/apt/sources.list.d/nodesource.list - Download and run the NodeSource setup script for Node 22:
curl -fsSL [https://deb.nodesource.com/setup_22.x](https://deb.nodesource.com/setup_22.x) | sudo -E bash - - Install/Upgrade Node.js:
sudo apt-get install -y nodejs - Verify the installation:
node -v
Method 3: Using the ‘n’ Package
If you have
npminstalled, you can use theninteractive manager.- Clear the npm cache:
sudo npm cache clean -f - Install the ‘n’ helper:
sudo npm install -g n - Install Node 22:
sudo n 22 - Update your shell:
hash -r
Troubleshooting
- Permission Denied: If you see permission errors using Method 2 or 3, ensure you are using
sudo. - Path Issues: If
node -vstill shows version 20 after upgrading via NVM, restart your terminal or runsource ~/.bashrc. - Conflicts: Avoid mixing these methods. If you switch from
apttonvm, it is best tosudo apt remove nodejsfirst to avoid path conflicts.
- Install Node 22:
-
What’s going on with NodeBB?how to upgrade nodejs v20 to v22?