Recent content by Luehrsen

  1. Luehrsen

    [OzzModz] Badges

    I'm still on CMTV in one of my boards, how would I update to OzzModz? Just disable CMTV and activate OzzModz? Edit: Figured it out. I had to install and migrate to VersoBit first. Then I could move and use the importer from OzzModz.
  2. Luehrsen

    XF 2.2 Who marked this solution?

    We are currently having an issue in our community where it is not clear who marked a specific solution for a question thread. Is there any way to see who marked the solution? (Modlog, etc.)
  3. Luehrsen

    As designed Deleting Ratings

    Short: Deleting a Rating-Comment does not delete the rating itself. How to reproduce: 1) Leave a star-rating on a media item with a comment. 2) Delete (soft or hard) that comment with the rating from that media item. (through /media/comments/xx/delete) 3) The rating_avg and and rating_count...
  4. Luehrsen

    max_user_connections (30) exceeded messages

    Replacing the functionality completely is certainly impossible or not worth it, especially the logging part. But for my jurisdiction the main purpose of the worker is to ensure a secure connection to the asset and to not implicitly leak data to a third party. (GDPR) So if only that is important...
  5. Luehrsen

    max_user_connections (30) exceeded messages

    Yeah, I'm also already piping proxy.php through cloudflare, but I'm thinking about totally replacing the proxy service with a cloudflare worker. Meaning that the proxy service is actually never touching XF, so it doesn't generate a database hit when uncached.
  6. Luehrsen

    max_user_connections (30) exceeded messages

    Definitely. I really happy to see that it will be a part of XF2.2 core. I'm currently dipping my toes into the paid stuff CF is offering (still far away from the Business Plan), and I'm thinking about workers. Do you think it is reasonable to replace proxy.php with a cloudflare worker alternative?
  7. Luehrsen

    max_user_connections (30) exceeded messages

    Around 100-150 active users at peak (Xenforo) on an image heavy board with a lot of proxied images. (Edit: And yes, I have a CF page rule for proxy.php...) Edit2: To elaborate a bit more, it is old, image heavy threads like these that trigger the 30 connections warning. And I have a lot of...
  8. Luehrsen

    max_user_connections (30) exceeded messages

    Yes. The very rare case is that you seem to have a moderately successful forum. I have the very same issue at the moment with my hoster and they are less than willing to do anything about it. Thats why I am moving to another Hoster very soon.
  9. Luehrsen

    XF 2.1 Querying parent moderators & node IDs

    To answer my own question: This is how I do it at the moment. The burden on the database seems reasonable. <?php namespace GWFW\ModHelper\XF\Entity; class Node extends XFCP_Node { public function getParentNodeIDs( $node = null, $parent_ids = array() ) { if( $node === null ) {...
  10. Luehrsen

    Why doesn't xenforo develop a xenforo blog plugin like resource menager like media gallery?

    https://w3techs.com/technologies/overview/content_management You are comparing Apples and Oranges here. For reference: I am mainly a WordPress developer and contribute to WordPress core from time to time. WordPress is a hugely successful and widely adopted piece of open source software...
  11. Luehrsen

    XF 2.1 Querying parent moderators & node IDs

    Hey, I am trying to display the moderators of my forums at the moment. So far so straightforward, the data is all available in the $node.Moderators relationship. But not really. Only the specifically assigned moderators for that node show up in that relationship, where content_id ===...
  12. Luehrsen

    Duplicate Scheduled Threads / Articles / Alerts

    Especially considering the new thread types introduced with XF 2.2 the ability to schedule threads would be helpful to create announcements and similar. If we could a scheduling system deeper in the core this could be extended to features like the alert system, to be able to schedule alerts in...
  13. Luehrsen

    XF2 [8WR] Discord Integration [Paid]

    @Jaxel First of all, thanks for the amazing work! I really enjoyed the implementation. This is the second time now I've had contact with this plugin. (First time as a user, now as an admin.) I've read the code a bit, so I have some questions about how things work, if you don't mind. In the...
  14. Luehrsen

    Xenforo 2.2 release

    I've been administering boards since the early 2000s and boy am I suprised how little the whole concept of forums has evolved. I've used Ikonboards, early IPBs, vBulletins, bb Boards, and now Xenforos. And I really have to tell you guys: I am really happy with my Xenforo. It's fast, the...
  15. Luehrsen

    XF 2.0 Extending XF\Admin\Controller\UserGroup

    Hey @Chris D, thank you for pointing me in the right direction. I've got my UserGroup extension working thanks to this thread. One thing though puzzles me still: The UserGroup cache getUserBannerCacheData doesn't update, when my custom setting is saved, but does normally, when I change some of...
Top Bottom