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

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ธ.ค. 2024

ความคิดเห็น • 23

  • @Wolf_with_Mustache
    @Wolf_with_Mustache หลายเดือนก่อน +1

    OMG, Query Monitor probably just saved me hours of debugging, tail chasing and a chunk of my sanity. Thanks for explaining and promoting this great plugin!

    • @BrianCoords
      @BrianCoords  26 วันที่ผ่านมา

      Yes! That's great to hear.

  • @josela
    @josela 5 หลายเดือนก่อน +1

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

  • @wesonweb
    @wesonweb 5 หลายเดือนก่อน +2

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

    • @BrianCoords
      @BrianCoords  5 หลายเดือนก่อน

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

  • @joninsley8
    @joninsley8 หลายเดือนก่อน

    Wow, I didn't know about the logging feature. I've only been using it for years to check for errors and slow queries

    • @BrianCoords
      @BrianCoords  หลายเดือนก่อน +1

      Same here- I was using it for years before I actually learned about logging. Now I use it all the time.

  • @kerapetsimajor
    @kerapetsimajor 6 หลายเดือนก่อน

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

    • @BrianCoords
      @BrianCoords  6 หลายเดือนก่อน

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

  • @erichepperlewp
    @erichepperlewp 6 หลายเดือนก่อน

    Signed up - Looking forward to the series!

    • @BrianCoords
      @BrianCoords  6 หลายเดือนก่อน +1

      Thanks! Let me know what you think.

  • @getJackt
    @getJackt 6 หลายเดือนก่อน

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

    • @BrianCoords
      @BrianCoords  6 หลายเดือนก่อน

      Thanks for watching!

  • @MarkCMoran
    @MarkCMoran 4 หลายเดือนก่อน

    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  4 หลายเดือนก่อน +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 4 หลายเดือนก่อน

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

    • @BrianCoords
      @BrianCoords  4 หลายเดือนก่อน

      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 6 หลายเดือนก่อน

    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  6 หลายเดือนก่อน +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 6 หลายเดือนก่อน

      @@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 3 หลายเดือนก่อน +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  3 หลายเดือนก่อน

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