@Xen Settings → Posts → Teaser → First.
Fastidious
Posts
-
How to disable the update teaser? -
European Cookie Bullshit@prog said:
By why should we (website owners) use this shit?
Simple answer? It is the law, deal with it.
-
Upload to S3Instead of trying plugin after plugin, does anyone knows of an upload to S3 plugin that is compatible with 0.8.X? Come across two or three, but that are older than Methuselah.
-
Installing on FreeBSD, error@psychobunny said:
If you could add a freebsd section to the docs then kudos to you
Done. Pull request pending.
-
Setting up NodeBB for a Q&A style website@tanzentu said:
What is Q&A?
Questions and Answers (Q&A).
-
UI bug on Profile@frissdiegurke said:
Ya, that dropdown should clearly drop the
pull-right
class https://github.com/NodeBB/nodebb-theme-persona/pull/151I was betting it was a theme issue. Thanks!
Btw. is the bio intended to be english-latin mix? "fastidium sum" would be the correct latin thought.
I am not sure, to be honest. My mother tongue is neither english, nor latin, but spanish. In spanish we would write:
"Soy fastidioso." or "Yo soy fastidioso."
Since spanish derives from latin, I though it would follow the same grammar. Either way, being as fastidious as I am, now I will not feel good until I have gotten to the bottom of it. Thanks, mate. A lot.
-
Recently logged in IPs issueGot it to work by changing my
nginx.conf
line:proxy_pass http://REAL.IP.OF.SERVER.HERE:4567/;
to:
proxy_pass http://127.0.0.1:4567/;
And my
config.json
to:{ "url": "http://REAL.DOMAIN.HERE", "base_url": "http://REAL.DOMAIN.HERE", "use_port": "false", "secret": "SOME-SECRET", "database": "redis", "redis": { "host": "127.0.0.1", "port": "6379", "password": "A-PASSWORD-HERE", "database": "0" } }
-
What will be NodeBB In 2100 year?NodeBB will not exist in the year 2100, but nor will we.
-
Cannot load my notificationsIt was fixed, but the forum was not updated. Now is. Over and out.
-
Division line at footerI would like to have a border at the top of the footer, similar to the one that shows at the bottom of the navigation. I know I can modify the footer widget, and I have done so (the
<hr />
<footer id="footer" class="container footer"> <hr /> <div class="copyright"> Copyright © 2014 <a href="https://nodebb.com">NodeBB</a> | <a target="_blank" href="//github.com/NodeBB/NodeBB/graphs/contributors">Contributors</a> </div> </footer>
However, the line doesn't stretch to touch the edge of the browser, just like the navigation does. How could I go to accomplish that?
-
Deleted topics, commentsEvery once and then I come across a topic or comment that says it has been deleted. if it has been deleted, I do not want to see it was. If I were running NodeBB, is there a way to hide, or disable that? Thanks!
-
NginX configuration assistance with NodeBB, Redis and Ubuntu 12.04.5 32bit on Digital Ocean dropletDo this:
- Make sure the fully qualified domain name you are going to use for your forums resolves fine.
- Set that domain name as a server on your
nginx.conf
, and create a dummy page. - Make sure you can browse to the domain name, and see the dummy page.
- Make sure Redis is running.
- Run the nodebb setup and use the fully qualified domain name, not the IP.
- Check nodebb is running fine by going to the fully qualified domain name, port 4567.
- Modify
nginx.conf
accordingly, following documentation.
-
How to disable the update teaser?@Xen have fun!
-
Install Nodebb and Ghost Blog@kimikelku said:
server_name bundlesbug.com/forum;
That is wrong. Server name remains the same (and you can't pass URL like parameters on server name), location changes. The right way is:
server { listen 80; server_name bundlesbug.com; location /forum/ { Check NodeBB documentation for the complete configuration that follows here. } }
-
Google SSO errorI am getting:
Internal error. Oops! Looks like something went wrong! /auth/google/callback failed to fetch user profile
when trying to login using the Google SSO (which seems like it is missing some love, as it shows with weird yellow background color, and colors in general under /admin).
Any tips to fix that, or is it a bug?