@eeeee are you trying to delete from the ACP? You can't delete in the forum view.
Community Representatives
Users helping the NodeBB team spread the word!
Posts
-
Cant delete category v13.12.1 -
Emails still not sending, 535@codenamejessica @eeeee one important note for smtp over telnet is that it can be quite unforgiving if you make a mistake when typing commands. If you press the delete key after realising a mistake it never seems to actually correct it despite it looking OK on screen.
Just something to be aware of it it doesn't work.
-
Emails still not sending, 535@eeeee then your port is open. The rest will be simply down to configuration.
-
How to support old browsers in NodeBB 3-4?@codenamejessica yes, when Microsoft insisted that Internet Exploder was the future and had different CSS standards to every other browser that followed CSS3 and earlier.
I too as a developer had to suffer this for years, along with shim files...
-
Emails still not sending, 535@eeeee said in Emails still not sending, 535:
that requires the App password, and it says my free gmail account doesnt have that functionality
All Gmail accounts have this functionality, althoughfrom January, they will require OAUTH.
SMTP2GO is a reliable SMTP server that has handled email delivery for its customers since 2006. You can start for free with 1,000 emails per month.
-
Emails still not sending, 535@eeeee too many bad auth attempts means you've specified an incorrect password too many times within an allocated time frame.
If you have your own vps, you can install postfix but will also require SPF, DKIM, and DMARC records added to your domain otherwise any message you send will be sent to junk. You'll also need port 25 unblocked by your provider as its the norm these days for it to be blocked to prevent misuse.
You could relay through Gmail?
-
3.12.0 Upgrade Support@eeeee @baris this is being sorted on Sudonix.org, and we'll likely have this fixed soon.
-
Pass variables into nodebb@codenamejessica no problems. It's standard GET and POST variable passing which works fine with
same-origin
-
Pass variables into nodebb@codenamejessica I'm using a mixture of PHP and JS.
-
Pass variables into nodebbI'm developing a portal at work where we use nodebb for a knowledge base. Ideally, I'd just use a reverse proxy so that /kb for example renders in a div (not an iframe) but this doesn't seem to work.
I can reference the site directly in an iframe, but I'd like to be able to remove (well, hide) various elements to make it look as though nodebb appears native. To achieve this, I'd typically use
?embedded=true
and then collect this inside nodebb itself but it's not being transmitted.If these variables are collected successfully, then they can be used as triggers to hide various elements.
This seems to work fine with PHP for example, but not under nodebb / NodeJS. I'm also sharing the same base domain and have settings for that.
There are no doubt better ways of achieving the same task?