Skip to content

Fresher in Nodebb install

General
24 5 9.0k 1
  • @MadWay NodeBB is actually NPM so not composer 👍

    @phenomlab not for free hosting I assume. There is no install.php or similar, If I remember. Does it have that option to have full first post display on front page i stead of just a title?

  • @phenomlab not for free hosting I assume. There is no install.php or similar, If I remember. Does it have that option to have full first post display on front page i stead of just a title?

    @phenomlab He always arrives safe 😊

    @Hari i agree on that, url structure can be seo effective. I am going to work on WordPress this next week, remember you were able to bring down TTF to 200ms on flarum? 😄 , so let’s aim under that and play small load time and leave everything there and watch how will play out. At least this time we have a wider ground, and able to pay just anyone to work on the simpler worldwide code unlike some place 🤭 We looked like we were captives in some sense. You can’t do a minor change because the extension it’s used by everyone. Now we free d**n!

    If we all have something great, imagine how we can benefit on backlinks, and how will be so simple! Not forgetting phenomlab is good in security.
    alt text

  • @phenomlab not for free hosting I assume. There is no install.php or similar, If I remember. Does it have that option to have full first post display on front page i stead of just a title?

    @MadWay NodeBB is in fact based on NodeJS so doesn’t use PHP at all.

  • @phenomlab He always arrives safe 😊

    @Hari i agree on that, url structure can be seo effective. I am going to work on WordPress this next week, remember you were able to bring down TTF to 200ms on flarum? 😄 , so let’s aim under that and play small load time and leave everything there and watch how will play out. At least this time we have a wider ground, and able to pay just anyone to work on the simpler worldwide code unlike some place 🤭 We looked like we were captives in some sense. You can’t do a minor change because the extension it’s used by everyone. Now we free d**n!

    If we all have something great, imagine how we can benefit on backlinks, and how will be so simple! Not forgetting phenomlab is good in security.
    alt text

    @Sala said in Fresher in Nodebb install:

    bring down TTF to 200ms on flarum?

    I can’t see how this is achievable. At least I never managed to get below 600ms in most cases and this was on powerful hardware.

  • @phenomlab He always arrives safe 😊

    @Hari i agree on that, url structure can be seo effective. I am going to work on WordPress this next week, remember you were able to bring down TTF to 200ms on flarum? 😄 , so let’s aim under that and play small load time and leave everything there and watch how will play out. At least this time we have a wider ground, and able to pay just anyone to work on the simpler worldwide code unlike some place 🤭 We looked like we were captives in some sense. You can’t do a minor change because the extension it’s used by everyone. Now we free d**n!

    If we all have something great, imagine how we can benefit on backlinks, and how will be so simple! Not forgetting phenomlab is good in security.
    alt text

    @Sala said in Fresher in Nodebb install:

    I am going to work on WordPress this next week, remember you were able to bring down TTF to 200ms on flarum?

    😄

    these are my wordpress forum metrics using Cloudflare APO

    c321d385-59e8-4b81-8aa0-6425913abdb9-image.png

    adc9b7b0-4d38-4606-9024-0ea1463d14bc-image.png

  • @Sala said in Fresher in Nodebb install:

    I am going to work on WordPress this next week, remember you were able to bring down TTF to 200ms on flarum?

    😄

    these are my wordpress forum metrics using Cloudflare APO

    c321d385-59e8-4b81-8aa0-6425913abdb9-image.png

    adc9b7b0-4d38-4606-9024-0ea1463d14bc-image.png

  • phenomlabundefined phenomlab forked this topic on
  • @cagatay and @Hari how were you able to make all those green color? Fantastic!

  • @cagatay and @Hari how were you able to make all those green color? Fantastic!

    @Sala it’s worth noting that making excessive changes chasing the holy grail of A+ for performance can actually have a negative impact on the overall experience. Because of this, I’d strongly recommend thoroughly testing each change in an incognito browser session to ensure the user experience isn’t impacted.

  • @cagatay and @Hari how were you able to make all those green color? Fantastic!

    @Sala was away from keys for a few weeks to visit TajMahal 😊

    try this! $5/ month but it is worth it.

  • @Sala was away from keys for a few weeks to visit TajMahal 😊

    try this! $5/ month but it is worth it.

    @Hari I’ve been reading a lot about APO. Looks impressive.

  • phenomlabundefined phenomlab referenced this topic on

Related Topics
  • NodeBB v4.0.0

    General nodebb sudonix version 4
    28
    4 Votes
    28 Posts
    6k Views
    @Panda said in NodeBB v4.0.0: the workings of World aren’t intuitive Its not easy to get World populating when a forum is new to it This is a good point and one I’ve considered also. It’s a little confusing to be honest.
  • Page control arrows for PWA

    Solved Customisation nodebb
    27
    25 Votes
    27 Posts
    12k Views
    @crazycells it is, yes - I think I’ll leave it as there is no specific PWA CSS classes I know of. Well, you could use something like the below, but this means multiple CSS files for different operating systems. /** * Determine the mobile operating system. * This function returns one of 'iOS', 'Android', 'Windows Phone', or 'unknown'. * * @returns {String} */ function getMobileOperatingSystem() { var userAgent = navigator.userAgent || navigator.vendor || window.opera; // Windows Phone must come first because its UA also contains "Android" if (/windows phone/i.test(userAgent)) { return "Windows Phone"; } if (/android/i.test(userAgent)) { return "Android"; } if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) { return "iOS"; } return "unknown"; // return “Android” - one should either handle the unknown or fallback to a specific platform, let’s say Android } Once you’re in that rabbit hole, it’s impossible to get out of it.
  • Smart Widgets

    Solved Configure nodebb
    9
    3 Votes
    9 Posts
    2k Views
    @Panda said in Smart Widgets: So why is that, or conversely why would the function to expose username ever be required, as it seems app.user is already an available global object? It is, yes, but not if you are using it outside of a widget. The function I wrote is also historical and comes from the 2.x train
  • 12 Votes
    47 Posts
    14k Views
    @dave1904 just coming back to this thread as @DownPW and I both experienced issues with other plugins today, and the fix was to use the plugin ordering in the ACP and move the Harmony theme to the very top so it comes before everything else in terms of other plugins. It might be worth at least trying this to see if it gives you a result rather than the previous bulldozer approach. Thinking about it, the previous fix I proposed is along the same lines and disabling plugins does in fact change the order when they are enabled again, so this is definitely worth a try. Let me know how you get on.
  • Welcome to NodeBB V3!

    Pinned Moved General v3-prod code changes
    1
    0 Votes
    1 Posts
    736 Views
    No one has replied
  • Nodebb as blogging platform

    General blog
    10
    5 Votes
    10 Posts
    5k Views
    @qwinter I’ve extensive experience with Ghost, so let me know if you need any help.
  • Nodebb Hashtag plugin

    Solved General
    15
    1 Votes
    15 Posts
    4k Views
    @jac Great ! I’ll close this off.
  • Display tweets in widget [NodeBB]

    Solved Customisation
    29
    4 Votes
    29 Posts
    11k Views
    @phenomlab brilliant, many thanks Mark