Jump to content

chopin

Clients
  • Posts

    114
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by chopin

  1. Here is a profile that uses a word in one of our word filters. It's a 4 letter word that starts with "s" and ends with "t". It appears that the word filter does not work in custom profile fields. Do you know if this is an oversight? Or is this an intentional design? Btw, none of us care about the s word in the profile, but we are wondering why the filter hasn't been applied. Thanks!
  2. Ok just figured it out this morning (last night was difficult because there were all kinds of problems with my WAMP setup as it was 2 years old!). PHP had to be upgraded in order to get my 4.x test install working properly, but I was not noticing that each time I went to click "INSTALL", it was giving me localhost//admin/install with 2 double slashes. But that is what was giving me the headache, and I am sure this person's issue that I linked to had the same problem as me. Removing the double slash was the quick and easy fix.
  3. I literally have the same problem as this person: Same error message and everything. I clear out my config_global.php so that I can just have a fresh install on my dev computer. But invision is assuming a default username of blank according to the error message. I am thinking this is a bug but I am unsure. There may be a workaround which is to copy over my database on my live site, but it would be a pain for me to do so. It's much cleaner and easier to do a fresh install for testing purposes. Any ideas?
  4. I see. I should have said "should be simple UNLESS they used a different approach" 😅
  5. Ah, thanks for the info. I've created applications with their dev tools (which are fantastic) and they have an easy to implement pagination widget in their SDK. So it would be a fairly simple thing to add on their end that would greatly improve the user experience. Hopefully this will be addressed in that update!
  6. I am specifically talking about this page here: app=core&module=achievements&controller=badges I have a very eager staff at my community who love making new badges. We have around 122 custom ones so far! The problem? There's no pagination on this admin page, and the page takes a bit to load. I was wondering if a pagination can be added to help with this problem? Thanks!
  7. Ok, I understand, thanks for the clarification. Will relay the message to the user that this is working as intended.
  8. Ok I see. Just a simple follow up. Is there any way to have it where the dropdown notifications menu retains its "unread" status until it has actually been clicked? For example, shouldn't it at the very least mirror what's seen on the "/notifications/" page?
  9. I'm just going to directly quote an issue a member of my forum came to me with: So my questions would be: Is there a way to have the notification count subtract by 1, as you click on each notification? If not, is there a way to keep the the messages in the notifications unread, until it is clicked? This leads me to the next issue, and I am not sure if this is a bug. The dropdown notification menu is always marked as "read". But the notification page correctly marks the threads as unread or read. They don't match, and you can take a look at my screenshot for an example.
  10. Is it possible for a user to update their login method from Facebook to normal email sign in? Can you take a look at this user inquiry and let me know if / how this could be achieved?
  11. Nevermind, I think my cron tasks were backlogged. I forgot that I updated my PHP to 8.0 recently and changing the cron command seemed to have fixed the issue.
  12. For some reason my forum's topic view count is no longer updating. Any ideas on why this is? You can check it out for yourself here.
  13. Ahh, ok I see the problem. Thank you for the tips, I was able to resolve by using the security key field in the core attachments table.
  14. After a certain date, it seems that the attachment downloads link stopped working at some point. If you take a look here, you will see what I mean: Gadget PDF: June 20, 2021 (works!) Piano Sonatina in D.pdf: July 16, 2021 (does not work) I'm unsure what is going on here, but it does seem like an update of some sort broke the download links. Do you think this is something that could be fixed in a new update?
  15. 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.
  16. 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?
  17. Scratch that, I just contacted the user to verify, and he did react 3 times in the same hour.
  18. Unfortunately this is not an isolated incident. This thread here is showing a triple reaction, if you see attached.
  19. Thank you very much for the quick release. That fixed the issue beautifully!
  20. 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.
  21. 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.
  22. 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.
  23. 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".
  24. 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.
×
×
  • Create New...