Recent content by DregondRahl

  1. DregondRahl

    Lots of Sub-Boards

    The problem is Xenforo runs that query to load the mainpage. Which is all the forums and nodes, and that is the problem im talking about. I have no idea what your talking about regarding last post list, as I am talking about how Xenforo would handle retrieving 2000 records to load the main page...
  2. DregondRahl

    Lots of Sub-Boards

    Hiding the sub-boards won't matter, since it will still load all the boards, to hydrate the last post in a forum. Which is the problem, i think. SELECT * FROM xf_node WHERE display_in_list = 1 ORDER BY lft ASC
  3. DregondRahl

    Lots of Sub-Boards

    A customer is considering getting XenForo for a large gaming board. But he has aloot of sub-boards, like 2000 Sub-boards for each game to be discussed. The question is how will it impact performance ? Since from what i remember from the coding, it queries all the boards and then hydrates the...
  4. DregondRahl

    Duplicate Like system with negative voting

    I kinda prefer the likes system to be only positive. People will abuse the dislike option.
  5. DregondRahl

    Ajax it all!

    I'm actually working on a plugin using node.js, its very easy to code with, just i'm not used to Xenforo. The node.js part is done practically. Its much more easier to maintain using node.js + socket-io means it can use websockets too, or you could use node.js + faye for Bayeux protocol...
  6. DregondRahl

    Create Avatar link

    Hey, I can get the database values for the avatar [gravatar] but I don't know whats the function to convert it into a avatar links o i can use it in my code without the template system. I seem to be stuck with it only. I need to pass the avatar as a JSON string.
  7. DregondRahl

    Alerts Action Hook ?

    hmm, i seem to be having a problem, right now im extending using the proxy to extend XenForo_Model, so i can access the alertUser() function, but to build an alert I need to query the additional information so i need to access that alert's id, however once saved i cant seem to access the lat...
  8. DregondRahl

    Alerts Action Hook ?

    Okay, finally got myself added to the account, when you can please move my thread. Thanks.
  9. DregondRahl

    Alerts Action Hook ?

    Is there is hook to get alerts as they are generated? I'm working on a plugin for a friend using Node to handle real-time notifications, just trying to find the right location of the hook so I can push the alerts to the node server and display them to the correct users. Also if any developer is...
  10. DregondRahl

    Nodifications Beta v0.1

    Nodifications Beta v0.1
  11. DregondRahl

    Important: Nginx Careful Configuration

    Yeah adding that to the PHP block is quite handy, simple fixes can solve a lot of problems. =]
  12. DregondRahl

    Important: Nginx Careful Configuration

    https://nealpoole.com/blog/2011/04/setting-up-php-fastcgi-and-nginx-dont-trust-the-tutorials-check-your-configuration/ In the above article it explains certain configurations from tutorials of Nginx that may cause a vulnerability, read over it in-case you are running Nginx.
  13. DregondRahl

    Horo is damn cute ! shes not a furry!..ish XD

    Horo is damn cute ! shes not a furry!..ish XD
  14. DregondRahl

    March 8th, 2011

    \m/ RockON! XenForo <3
  15. DregondRahl

    Ajax it all!

    long-polling would only be good with a sever that can handle that many connections like Nginx. Also there is a push module for Nginx that would be more useful than just long polling.
Top Bottom