Jump to content

chopin

Clients
  • Joined

  • Last visited

Everything posted by chopin

  1. Oh I see the issue. I was using the wrong built in function for what I wanted. It is ok for multiple members to be published, I am looking for topics with few responses. So I would need: \IPS\forums\Topic::constructFromData($row); That should solve my problem, thank you.
  2. I created a very simple plugin to query results. My query is this: \IPS\Db::i()->select( '*', 'forums_topics', '(approved = 1) AND (forum_id = 2)', 'rand(), start_date desc limit 5 ) ->join('core_members', 'member_id = starter_id') ); I then run it through a loop: foreach ($sql as $row) { $users[] = \IPS\Member::constructFromData($row); } And finally I return this value to the template: return $this->output($users); The issue is that I am seeing repeat results, even though the query returns unique results. So $sql[0]["tid"] thorugh $sql[4]["tid"] gives me unique results, however $users[0]->tid through $users[4]->tid gives me repeats. I cannot figure out why this is. See attached for an example of the returned results. Is there a better way for me to produce the above? Or is there an issue with the function "\IPS\Member::constructFromData" perhaps?
  3. Scratch that, I just contacted the user to verify, and he did react 3 times in the same hour.
  4. Unfortunately this is not an isolated incident. This thread here is showing a triple reaction, if you see attached.
  5. Thank you very much for the quick release. That fixed the issue beautifully!
  6. I attached a screenshot of the doubled reactions of my Activity Feed. If a member is a Moderator, this is what they see. You can see that a member SSC has a double reaction, and here is the corresponding thread, where you can see he clearly has only one reaction. I think this is a bug, one of my admins notified me of this issue.
  7. Wonderful! Thank you for taking the time to review. I spent a lot of time on my end making sure it was actually a bug on your end, rather than on my end.
  8. Let me just tell you what I'm trying to do, because it no longer is working on my end. I want to "hide" the html5 player that is automatically inserted so that my custom html5 player is the only player showing in the post. So I made a template hook change replacing the html5 code. This used to work, but the template changed, and now on my dev computer, I can't even do a simple replacement. Here is an example of the issue I am having: Template Error So the user uploaded the mp3, and did not click "insert". This led to the template error which you can see in detail from my first post. But let's say this html5 player is inserted. I can't seem to "remove" the player by replacing it any longer in the template hook. You can see an example in my dev tools screenshot. This replacement doesn't work.
  9. I notice that when uploading an audio file, the mp3 file does not "auto insert" when posting. If the user forgets to insert the audio, there is a bug which I attached. Auto insert must not be removed so that this bug does not occur. But I have an idea why the bug occurs. The error is stating that 4 parameters are passed into this template which now has been updated to have 5 parameters. So I think this is what the error is indicating. If this issue can be fixed quickly, I would greatly appreciate it. My forum is a music forum where users are consistently updating mp3s, and there will be all sorts of error messages around this now because of the parameter mismatch issue and lack of "auto insert".
  10. Ok understood. I am rebuilding my achievements right now, and it appears that processes run via a queue (not asynchronously) which would explain the bottleneck. Thanks for the clarification.
  11. Thanks @Sonya*, I resubmitted.
  12. In the bulk mail management section, I can create a message and filter members without any issues. But once I send the bulk mail, the sent to field is set to 0, and time taken says "Not Started". Please see attached image for an example of my issue. I believe @HAINAngel may have a similar issue.
  13. Yup same problem here. It won't initiate and the member count is always set to 0.
  14. One problem I am having with this contact for is that I am receiving duplicate emails to my inbox. Can you help?
  15. chopin replied to Axel Wers's post in a topic in Feedback
    We need a toggle button to switch between visual (RTE) editor, which should be placed directly directly on the Fast Reply box, and Full Editor mode box. Right now, the only way to switch between modes is by going to settings --> Posting Settings --> Enable visual (RTE) editor I know someone also brought this up, but I will emphasize it. We need expiring redirects (and the user can set the specified time in hours, days, months, or a custom time) for moved threads. Also, we need a way to manage and set existing "moved threads" in the ACP. For example, with the new update, existing moved threads will not have this expiring redirect applied. In the ACP, please add a section where the admin can view all moved threads, and set expiring redirects as desired. Thanks! :)