Query Monitor - 7 Important Tools for Modern WordPress Development #1

Поділитися
Вставка
  • Опубліковано 6 жов 2024

КОМЕНТАРІ • 19

  • @wesonweb
    @wesonweb 3 місяці тому +2

    Great video. I’ve used Query Monitor but it was great to learn some new uses from your vid!

    • @BrianCoords
      @BrianCoords  3 місяці тому

      That's great! I only recently learned the whole 'logging' aspect and now I use it all the time.

  • @josela
    @josela 3 місяці тому +1

    Cool video Brian and thanks a lot for give us a closer vision on Query Monitor!

  • @kerapetsimajor
    @kerapetsimajor 3 місяці тому

    This is super helpful video. Didn't know that Quary monitoring was this powerful

    • @BrianCoords
      @BrianCoords  3 місяці тому

      Yep this really only scratches the surface. They have great documentation showing even more features: querymonitor.com/wordpress-debugging/how-to-use/

  • @getJackt
    @getJackt 3 місяці тому

    Hey Brian great video, I know I’m going to love this series

  • @erichepperlewp
    @erichepperlewp 3 місяці тому

    Signed up - Looking forward to the series!

    • @BrianCoords
      @BrianCoords  3 місяці тому +1

      Thanks! Let me know what you think.

  • @MarkCMoran
    @MarkCMoran 2 місяці тому

    You mentioned that this video is for people who have some familiarity with node.js and npm and the development environment. But for those who don't, what course/tool/resource would you recommend for them to get up to speed so that the things you talk about on your channel make sense to them? Where would they go to get that knowledge? (Preferably an answer that isn't just "google it" or "go to the wordpress developer docs" would be great.) Thanks!

    • @BrianCoords
      @BrianCoords  2 місяці тому +1

      That's a good/hard question. I'm going to ask around and see. The hard thing about developer tools in general is that they're kinda always in the background, so content about them isn't as popular as content that's more directly showing how to build a specific thing.

    • @MarkCMoran
      @MarkCMoran 2 місяці тому

      @@BrianCoords Thanks for the reply. I look forward to hearing what you find out. :-)

    • @BrianCoords
      @BrianCoords  2 місяці тому

      I asked around and got strong endorsements for this free course (part of a larger paid course) by Ahmad Awais- who definitely knows his stuff and knows WordPress. nodejsbeginner.com/

  • @hujth6
    @hujth6 4 місяці тому

    awesome! thank you
    i have query monitor on my website, never realy figure out how to use it properly, i hope now i will know how to use it better
    and also, my logs (error_log debug file, query monitor logs, js console logs) are full of errors from plugins and it come to the point that i cant rely on that logging systems because its just flooded with info, so i use var_dump or xdebug instead, do you have any idea on how to clear my logs?

    • @BrianCoords
      @BrianCoords  4 місяці тому +3

      You can delete wp-content/debug.log to clear that log. Then load one page on your site to collect a snapshot of a single page. But if your plugins are all showing console errors, php notices, etc, then you should definitely revisit those plugins and maybe post on the support forum! That should not be the case.

    • @hujth6
      @hujth6 4 місяці тому

      @@BrianCoords this is actually what im doing every time, deleting debug.log and load a page. still, those plugins fill it realy quick
      i will try to talk to them and see what can be done
      i have come to a point where i think of implementing my own error log function just to avoid the other plugins

  • @veppa
    @veppa Місяць тому +1

    4 second for External API Request is too much. Wordpress admin also has lot's of external requests (wp_http). To optimize wordpress admin for speed you may need to block some wp_http external requests.

    • @BrianCoords
      @BrianCoords  Місяць тому

      Yeah it's definitely not ideal, especially if it's happening when server response speed is critical, like adding items to a shopping cart.