Jump to content

Gabriel Torres

Clients
  • Posts

    1,748
  • Joined

  • Last visited

  • Days Won

    4

Reputation Activity

  1. Thanks
    Gabriel Torres reacted to SeNioR- in CDN for guest page serving   
    Settings:


    Link: 
     
  2. Thanks
    Gabriel Torres reacted to DawPi in (DP41) Mod Action Notify   
    We will see what I can do with that. 😉
  3. Like
    Gabriel Torres got a reaction from DawPi in (DP41) Mod Action Notify   
    Ideally something along the lines of:
    Your topic has been moved: <title>
    Your topic has been edited: <title>
    Your post has been hidden: <title>
    Where <title> is the topic's title.
    It could be incorporated in the #reason_stuff# tag.
    Currently: John Doe moved a topic <title>
    Proposal: John Doe moved a topic <title> from <origin> to <destination>
    Where <origin> and <destination> are the forums names with links to them.
    Thanks for the reply! 🙂
  4. Agree
    Gabriel Torres got a reaction from Thomas Surgent in Send automatic PMs upon moderation actions   
    Hi,
    Is there a way to send automated PMs upon moderation actions (e.g., when a topic or post is hidden, deleted, moved etc)?
    I used to acomplish that with the Automation Rules plugins, but it is no longer supported, so I had to uninstall it.
    The current IPS version has the alert feature. However, our moderators need to manually fill out the required fields every time, which is time-consuming and really annoying.
    If there is no solution for that, could a member of the staff move this topic to the Feedback forum? Thanks.
    Thanks!
  5. Thanks
    Gabriel Torres reacted to Adriano Faria in Send automatic PMs upon moderation actions   
    Alerts will work for the content item (topic) only, not for posts… unless I’m mistaken.
  6. Like
    Gabriel Torres got a reaction from DawPi in Send automatic PMs upon moderation actions   
    @Marc Stridgen Addendum: I said PM, but it could be implemented through notifications.
    @DawPi Many thanks for pointing me to this app! 🙂
  7. Thanks
    Gabriel Torres reacted to Marc Stridgen in Send automatic PMs upon moderation actions   
    There isn't a way in which to do this within the core platform at present. I have moved your topic. 
  8. Thanks
    Gabriel Torres reacted to DawPi in Send automatic PMs upon moderation actions   
    https://invisioncommunity.com/files/file/8416-dp46-mod-action-notify/
  9. Thanks
    Gabriel Torres got a reaction from Fosters in HORRENDOUS SPAM PROBLEMS!!   
    @AL B
     
    Also, try:
    It works great here for us.
  10. Thanks
    Gabriel Torres reacted to Marc Stridgen in TypeError: flock(): Argument #1 ($stream) must be of type resource, bool given.   
    Disk template caching will not be suitable in all environments. I would leave it switched off if things are working 
  11. Like
    Gabriel Torres reacted to Marc Stridgen in Missing language strings   
    I believe this is an open issue at present (the language string), but I dont think its related to your error message there.
  12. Like
    Gabriel Torres got a reaction from TDBF in TypeError: flock(): Argument #1 ($stream) must be of type resource, bool given.   
    @Jim M I was facing the same issue (we had literally thousands of those errors in our logs), and your advice to disable the template disk caching solved the issue for me. I only wonder if this is something more serious that must be addressed.
    For those looking for this option: Advanced Configuration > Server Environment > Performance > Enable template disk caching?
  13. Thanks
    Gabriel Torres reacted to Olivia Clark in June Release Chat   
    Question from Our Community: Will there be options to optionally automate account deletion in some way? E.g. 14 days after an account request for deletion has been sent and with no admin reacting in this timeframe, the account will be gone automatically.(Jump to the answer in the video)
  14. Thanks
  15. Thanks
    Gabriel Torres reacted to Marc Stridgen in Issue with byline_itemprop language string   
    This item has now been resolved on the latest 4.7.5 release of the platform. If you are experiencing issues once you have upgraded, please let us know.
  16. Like
    Gabriel Torres reacted to Daniel F in Font Awesome 5   
    Why? I love it. So much better than uploading custom icons for „everything“ .
    I‘m even using FA icons as custom forum and badge icons.
  17. Thanks
    Gabriel Torres reacted to Jim M in Issue with byline_itemprop language string   
    Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
     
  18. Like
    Gabriel Torres got a reaction from SeNioR- in Issue with byline_itemprop language string   
    Hello,
    Today I noticed that the byline_itemprop language string defaults to: By %s,

    The presence of this comma causes a visual issue in topics, as the name of the author is incorrectly followed by a comma:

    This comma, however, is used for separating the username from the date/time string in the topic list:

    So, if we edit the byline_itemprop string to remove the comma, it fixes the issue in the topic, but create another issue in the topic list:

    Here at invisioncommunity.com, I noticed that this language string was edited and the comma was removed, so the username isn't followed by a comma in topics, but the username and the date/time are not separated by a comma in the topic list.
    Proposed solution: add a new language string that defaults to By %s (without a comma) and use this new language string in the forums > front > topics > topic template.
    I know this is a very silly visual bug, but I had to mention it.
    Cheers,
    Gabe.
  19. Like
    Gabriel Torres got a reaction from Adriano Faria in Help with the infamous parent template issue with PHP8   
    @Adriano Faria
    I've read the other topic from @CodingJungle where you guys were discussing the infamous parent error with PHP8:
    Our install has several custom-made apps and plugins, and the developer @newbie LAC is MIA since the beginning of the Covid pandemic (and I fear for the worst, as I tried, unsuccessfully, contacting him via email a few times). Since we want to preserve all these plugins, I have to fix all of these errors myself before moving to PHP8 in production, which is quite annoying. I will post below the issue I am having with one specific plugin, so maybe you guys can help me out fixing the issue and, hopefuly, once I understand how to fix this, I will be able to replicate the fix to all other plugins that are throwing the same error.
    As seen in the log above, the error is thrown in line 137, which reads as:
    $whosOnline = parent::whosOnline($members, $memberCount, $guests, $anonymous, $orientation); I've tried to surround this statement with what you suggested in the other topic, at no avail:
    if( \is_callable( 'parent::whosOnline' ) ) { $whosOnline = parent::whosOnline($members, $memberCount, $guests, $anonymous, $orientation); return $whosOnline; } If you could help me out it would be super.
    I am attaching the hook file to this post for your evaluation.
    Thanks.
    nbBotsInOnlineListTplWhosOnline.php
  20. Thanks
    Gabriel Torres reacted to teraßyte in Help with the infamous parent template issue with PHP8   
    Try replacing the parent call (line 134) with this code instead:
    # Get parent output (PHP 8 fix) $whosOnline = ''; if( \is_callable( 'parent::' . __FUNCTION__ ) ) { $whosOnline = \call_user_func_array( 'parent::' . __FUNCTION__, \func_get_args() ); }  
  21. Like
    Gabriel Torres got a reaction from SeNioR- in Help with the infamous parent template issue with PHP8   
    @Adriano Faria
    I've read the other topic from @CodingJungle where you guys were discussing the infamous parent error with PHP8:
    Our install has several custom-made apps and plugins, and the developer @newbie LAC is MIA since the beginning of the Covid pandemic (and I fear for the worst, as I tried, unsuccessfully, contacting him via email a few times). Since we want to preserve all these plugins, I have to fix all of these errors myself before moving to PHP8 in production, which is quite annoying. I will post below the issue I am having with one specific plugin, so maybe you guys can help me out fixing the issue and, hopefuly, once I understand how to fix this, I will be able to replicate the fix to all other plugins that are throwing the same error.
    As seen in the log above, the error is thrown in line 137, which reads as:
    $whosOnline = parent::whosOnline($members, $memberCount, $guests, $anonymous, $orientation); I've tried to surround this statement with what you suggested in the other topic, at no avail:
    if( \is_callable( 'parent::whosOnline' ) ) { $whosOnline = parent::whosOnline($members, $memberCount, $guests, $anonymous, $orientation); return $whosOnline; } If you could help me out it would be super.
    I am attaching the hook file to this post for your evaluation.
    Thanks.
    nbBotsInOnlineListTplWhosOnline.php
  22. Thanks
    Gabriel Torres reacted to Adriano Faria in Theme Hook weirdness in 4.6   
    Just tested this in another app and works fine. Example:
    public function methodName( $param1, $param2 ) { ... do your stuff ... if( \is_callable( 'parent::methodName' ) ) { return \call_user_func_array( 'parent::' . __FUNCTION__, array( $param1, $param2 ) ); } }  
  23. Thanks
    Gabriel Torres reacted to Marc Stridgen in solved_stats_from orphan key   
    This issue has been resolved in the recently released 4.7.3 version. Please upgrade to resolve this. If you are then still experiencing problems, please let us know.
  24. Like
    Gabriel Torres got a reaction from Andy928 in Duplicate images when copying and pasting   
    @Andy928 @Matt We've just upgraded to 4.7.0 and I can confirm that this bug is now gone. Many thanks! 🙂
     
  25. Like
    Gabriel Torres reacted to Egorkin in Payment from Russia   
    Question to the IPS Team!
    We IPS clients are not to blame for what our president is doing in Ukraine. No sane person supports this horror. If it is impossible to renew the license, then maybe it is possible to update the distribution to preserve the security of communities? Without support and services.
    For example, Microsoft has stopped sales in Russia, but updates are available.
    Without this, we will have to switch to illegal versions for the safety of our communities. I've been an IPS customer for 15 years and that would be the worst choice.
×
×
  • Create New...