Skip to content

NodeBB - Created pages not found?

General
20 2 2.5k 1
  • @jac however on more digging I’ve found that if you go directly to the link then the table shows up no issues.

    @jac Yes, this is likely to be an issue with how the script is being called. I’m guessing the page loads when accessed directly, but not via the forum itself ?

    EDIT - suspicion confirmed. The page loads without issue if accessed directly.

    Checking

  • @jac this should work now. It’s a little primitive, and means the page has to load twice, but it’ll work as desired. Essentially, the below code when added to each widget will force the page to reload directly

    <script>
    $(window).on('action:ajaxify.end', function (data) {
        location.reload();
    });
    </script>
    
  • @jac this should work now. It’s a little primitive, and means the page has to load twice, but it’ll work as desired. Essentially, the below code when added to each widget will force the page to reload directly

    <script>
    $(window).on('action:ajaxify.end', function (data) {
        location.reload();
    });
    </script>
    

    @phenomlab said in NodeBB - Created pages not found?:

    @jac this should work now. It’s a little primitive, and means the page has to load twice, but it’ll work as desired. Essentially, the below code when added to each widget will force the page to reload directly

    <script>
    $(window).on('action:ajaxify.end', function (data) {
        location.reload();
    });
    </script>
    

    Brilliant, thank you very much Mark!

    Will try this again now. Not been on here much as the Mrs has Covid so we are all off not feeling great.

  • @phenomlab said in NodeBB - Created pages not found?:

    @jac this should work now. It’s a little primitive, and means the page has to load twice, but it’ll work as desired. Essentially, the below code when added to each widget will force the page to reload directly

    <script>
    $(window).on('action:ajaxify.end', function (data) {
        location.reload();
    });
    </script>
    

    Brilliant, thank you very much Mark!

    Will try this again now. Not been on here much as the Mrs has Covid so we are all off not feeling great.

    @jac Sorry to hear that. Hope everything’s ok.

  • @jac Sorry to hear that. Hope everything’s ok.

    @phenomlab said in NodeBB - Created pages not found?:

    @jac Sorry to hear that. Hope everything’s ok.

    Thanks Mark, appreciate it.

    Fortunately for now it’s just a temperature and a barking cough.

    So I’ve got my son at home too as we are awaiting his PCR result to see if he can go back into school. It’s a strange one, if his result comes back as negative he’s allowed back into school 🤔, but I have to stay off even though my lateral flow results were negative despite feeling unwell all week it was only on Tuesday night that the Mrs had similar symptoms to me and did a test and was negative on all three just be sure.

  • @phenomlab said in NodeBB - Created pages not found?:

    @jac Sorry to hear that. Hope everything’s ok.

    Thanks Mark, appreciate it.

    Fortunately for now it’s just a temperature and a barking cough.

    So I’ve got my son at home too as we are awaiting his PCR result to see if he can go back into school. It’s a strange one, if his result comes back as negative he’s allowed back into school 🤔, but I have to stay off even though my lateral flow results were negative despite feeling unwell all week it was only on Tuesday night that the Mrs had similar symptoms to me and did a test and was negative on all three just be sure.

    @jac A strange setup indeed. I have one of my team at work who has tested positive and needs to self-isolate.

  • @jac A strange setup indeed. I have one of my team at work who has tested positive and needs to self-isolate.

    @phenomlab definitely strange, as I’ve had the result back today from the PCR test done on Wednesday and it’s positive despite 3 lateral flow tests being negative.

  • @phenomlab definitely strange, as I’ve had the result back today from the PCR test done on Wednesday and it’s positive despite 3 lateral flow tests being negative.

    @jac Yeah, not surprised. I’ve heard numerous stories of multiple LF tests showing as negative, when a PCR is positive.

  • @jac Yeah, not surprised. I’ve heard numerous stories of multiple LF tests showing as negative, when a PCR is positive.

    @phenomlab absolutely, seems a pointless exercise really for many to do the lateral flow test for it to be falsely negative to then go in work etc and spread it when being genuinely positive.

  • @phenomlab absolutely, seems a pointless exercise really for many to do the lateral flow test for it to be falsely negative to then go in work etc and spread it when being genuinely positive.

    @jac Exactly. Hard point to argue.


Related Topics
  • Nodebb design

    Solved General nodebb
    2
    1 Votes
    2 Posts
    583 Views
    @Panda said in Nodebb design: One negative is not being so good for SEO as more Server side rendered forums, if web crawlers dont run the JS to read the forum. From recollection, Google and Bing have the capability to read and process JS, although it’s not in the same manner as a physical person will consume content on a page. It will be seen as plain text, but will be indexed. However, it’s important to note that Yandex and Baidu will not render JS, although seeing as Google has a 90% share of the content available on the web in terms of indexing, this isn’t something you’ll likely lose sleep over. @Panda said in Nodebb design: The “write api” is preferred for server-to-server interactions. This is mostly based around overall security - you won’t typically want a client machine changing database elements or altering data. This is why you have “client-side” which could be DOM manipulation etc, and “server-side” which performs more complex operations as it can communicate directly with the database whereas the client cannot (and if it can, then you have a serious security flaw). Reading from the API is perfectly acceptable on the client-side, but not being able to write. A paradigm here would be something like SNMP. This protocol exists as a UDP (UDP is very efficient, as it is “fire and forget” and does not wait for a response like TCP does) based service which reads performance data from a remote source, thus enabling an application to parse that data for use in a monitoring application. In all cases, SNMP access should be “RO” (Read Only) and not RW (Read Write). It is completely feasible to assume complete control over a firewall for example by having RW access to SNMP and then exposing it to the entire internet with a weak passphrase. You wouldn’t do it (at least, I hope you wouldn’t) and the same ethic applies to server-side rendering and the execution of commands.
  • Welcome to NodeBB V3!

    Pinned Moved General v3-prod code changes
    1
    0 Votes
    1 Posts
    443 Views
    No one has replied
  • Issues with 2nd NodeBB installation

    Solved General
    22
    3 Votes
    22 Posts
    3k Views
    @cagatay yes, that will be fine. Just watch for potential caching conflicts as you will have two sites writing to the one instance of iframely.
  • Fresher in Nodebb install

    General nodebb
    24
    15 Votes
    24 Posts
    4k Views
    @Hari I’ve been reading a lot about APO. Looks impressive.
  • 2 Votes
    4 Posts
    783 Views
    @qwinter it’s workable I think, but not perfect - then again, unless you write a specific plugin to perform such a task, what is. As you pointed out, you have versioning of sorts with the historical access to reach post.
  • NodeBB vs Flarum for a non developer

    Solved General
    17
    10 Votes
    17 Posts
    2k Views
    @marusaky That’s really easily done. I think the docs need updating for the latest release. Did you land up on the 18.x train ?
  • Discord Login - OAuth2 - NodeBB

    Solved General discord nodebb plugins
    32
    11 Votes
    32 Posts
    5k Views
    @Galaxian hi, and welcome to Sudonix Can you check your config.json file and ensure that your forum URL doesn’t have a trailing backslash or forward slash in it ? This was the issue @Sampo2910 had.
  • NodeBB Blog Comments

    General nodebb blog
    3
    1 Votes
    3 Posts
    644 Views
    @kurulumu-net Not specifically, but you should review this post from the very large thread as it will save you a lot of time. There’s significant customisation on the Ghost side of things, but not in NodeBB https://community.nodebb.org/post/86022