Jump to content

SeNioR-

Members
  • Posts

    1,141
  • Joined

  • Days Won

    5

Reputation Activity

  1. Like
    SeNioR- reacted to teraßyte in [BUG 4.7.16] Same user reacted twice to a post   
    I'm not sure how it happened, but the same user was able to react twice to one of my posts here on this forum:
     
    You can see there are 2 Thanks reactions from the same user.
     
    I also received 2 separate inline notifications for it.
  2. Like
    SeNioR- reacted to Adriano Faria in [BUG 4.7.16] Same user reacted twice to a post   
    It seems you were excessively helpful. You deserved it twice. 😂
  3. Like
    SeNioR- reacted to DawPi in Deposit money to users   
    Send them money directly on the bank account or PayPal? 🤔
  4. Like
    SeNioR- reacted to Jim M in Deposit money to users   
    There's really no method for simply giving money to a user in Commerce. Commerce handles payouts, like in Downloads, where you are acting as an intermediary for a transaction between two users.
    For your solution though, I would just keep it simple with PayPal, Venmo, or some form thereof, personally like @DawPimentioned.
  5. Haha
    SeNioR- reacted to beats23 in Help!! I can't update to the latest version. There are no applications available to upgrade   
    In my book, the latest is always the best. Someone has to be the guinea pig for the rest or there will be a slow evolution. I'll be installing IPSv5 on the first day it drops🙂.
     
  6. Like
    SeNioR- reacted to NAWAC in Help!! I can't update to the latest version. There are no applications available to upgrade   
    I just performed the upgrade with PHP 8.1 and everything worked fine with no errors. It must have been the PHP 8.3. The Extractor->extract(0) utility must not be the same in PHP 8.3 than in 8.1.  
    Thanks for the help, everyone.
  7. Like
    SeNioR- reacted to TDBF in Hook Error Extending ipsContentController   
    Hi,

    I'm not sure that this is an issue on my end or not.
    I have created a hook which extends class \IPS\Content\Controller, however when I try to edit the hook I get the following error.
    Anyone else getting this?
    Error: Call to undefined method ReflectionUnionType::getName() (0) #0 C:\wamp64\www\#\applications\core\modules\admin\applications\developer.php(3577): IPS\Plugin\_Hook->editForm() #1 C:\wamp64\www\#\system\Dispatcher\Controller.php(107): IPS\core\modules\admin\applications\_developer->editHook() #2 C:\wamp64\www\#\applications\core\modules\admin\applications\developer.php(69): IPS\Dispatcher\_Controller->execute() #3 C:\wamp64\www\#\system\Dispatcher\Dispatcher.php(153): IPS\core\modules\admin\applications\_developer->execute() #4 C:\wamp64\www\#\admin\index.php(13): IPS\_Dispatcher->run() #5 {main}  
  8. Like
    SeNioR- reacted to Randy Calvert in Help!! I can't update to the latest version. There are no applications available to upgrade   
    That's a lesson I learned a long time ago.  🙂 The "latest" is not always the best.  In fact in the corporate world, most organizations run slightly older LTS releases of software instead of the hot off the press versions.  
    The key question to ask is if there is something specific you need in the latest release (for example a known bug was fixed in the newest release that is causing problems for you).  From a security perspective, since 8.2 for example is still supported, if there was a major security issue, they would release the next sub point release (8.2.XX).  It would not require upgrading to 8.3.x until 8.2 is EOS.  
  9. Like
    SeNioR- reacted to Martin A. in 4.7.16 (This site) Pagination on forums with a sub-forum doesn't "work"   
    If you go to this link, clicking page 1 in the pagination does not do anything at all. you can go to other pages, but it requires a full redirect, not a smooth content replace with javascript. Scroll down a bit before clicking, and notice how you'll end up on top of the page afterwards.
    https://invisioncommunity.com/forums/forum/497-technical-problems/page/3/
    This will only happen if the forum you view have a sub-forum. Works perfectly fine here
  10. Agree
    SeNioR- reacted to Mick23 in Fluid mode showing topics from protected forums   
    If I select a single forum from the filter in fluid mode, it will show topics from ALL forums (including protected staff areas).
    This is a big problem as it means that our members can see our staff topics.
  11. Like
    SeNioR- reacted to Mick23 in Fluid mode showing topics from protected forums   
    IMO this kind of bug really should never have gotten through basic smoke testing of the release.
    Releases used to be trustworthy but I think I'll hold off on them for a month or so after they are available to try to avoid this kind of thing.
  12. Like
    SeNioR- reacted to NAWAC in Help!! I can't update to the latest version. There are no applications available to upgrade   
    I was running php 8 3 also. I will downgrade to 8.1 and retry the upgrade again to the forum.
  13. Like
    SeNioR- reacted to Stuart Silvester in Help!! I can't update to the latest version. There are no applications available to upgrade   
    We certainly have, it wasn't quite ready for this release though.
  14. Like
    SeNioR- got a reaction from DawPi in drag and drop handler for reordering the editor templates tabs   
    Totally agree! Moving tabs would be great.
  15. Like
    SeNioR- reacted to Daniel F in Okay to truncate "core_log" table?   
    Yes, it’s safe to truncate it
  16. Like
    SeNioR- reacted to teraßyte in Mixin for UI?   
    From the js file (line 61):
    ips.createModule('ips.ui.uploader', function(){  
    To create a new one you need to copy/paste the file in your app, change the name, update the names/references, edit the code you need, and call the new module's name in the HTML.
     
    This is the code that registers the module (I'll use the dialog one which is more used):
    ips.ui.registerWidget('dialog', ips.ui.dialog, [ 'url', 'modal', 'draggable', 'size', 'title', 'close', 'fixed', 'destructOnClose', 'extraClass', 'callback', 'content', 'forceReload' , 'flashMessage', 'flashMessageTimeout', 'flashMessageEscape', 'showFrom', 'remoteVerify', 'remoteSubmit' ], { lazyLoad: true, lazyEvents: 'click' } ); You need to change the dialog name (maybe dialogbis) which registers the widget. All the other values in the array are the options you can use inline.
     
    This is how the code would be with the original dialog module:
    <div data-ipsDialog data-ipsDialog-title="TITLE" data-ipsDialog-remoteSubmit data-ipsDialog-flashMessage="ITEM SUBMITTED"> This is how it would look with your updated dialogbis module:
    <div data-ipsDialogbis data-ipsDialogbis-title="TITLE" data-ipsDialogbis-remoteSubmit data-ipsDialogbis-flashMessage="ITEM SUBMITTED">  
  17. Like
    SeNioR- reacted to Matt in Invision Community 5: Assign topics to moderators   
    Forum moderation management used to be straightforward. It was commonplace to assign a moderator to a single forum. They would be responsible for enforcing the rules, removing spam and generally modelling the behaviour you wanted to see within your community.
    As community management has matured and moderators are tasked with roles based on knowledge, help and support, there is a need for more nuance in managing topics within your community.
    For example, you may have specialists or teams of specialists who help answer questions about development, sales, or support. Topics that require this help may be posted anywhere within your community.
    Indeed, this feature was inspired by a need in our own support community to ensure customers get the right help from the right team member. We have questions on feature sets, purchasing, and support requests, each requiring a different team member. It is not enough to hope that the right person sees the topics; they must be assigned to ensure excellent service.
     
    What are the benefits of this feature?
    The ability to assign a topic to a single moderator or a team of moderators ensures that each topic gets the best outcome regardless of where it was posted.
    Having topics assigned helps moderators deal with issues quickly, as there's clarity over which moderators should handle the topic. It also helps keep your community team accountable by having the ability to monitor their workload and get statistics on the time it takes for your team to reply. These statistics also help the community lead assess quality control.

     
    How do you use this feature?
    There are two ways to assign a topic to a moderator or team of moderators. You can assign a topic when replying to it or do it from the topic's action menu.
    Once assigned, the assignee can review their assigned topics via the Moderator Control Panel and see which are assigned to them via the list of topics. Each moderator will receive a notification informing them they have a new assignment.

    Those with permission to assign topics to others will see all the assigned topics and who they are assigned to when reviewing the list of topics.

    The Admin CP contains a list of all assigned topics and also allows you to create and manage teams of moderators, such as "Sales Team" or "Developers."

    Finally, once the topic has been managed successfully, the moderators can remove themselves from the assignment completing the task.
    Assigning a specific topic to a single person or team in a busy online forum is a strategy that can enhance the effectiveness of the forum's management. It promotes efficiency, expertise, consistency, and accountability, which are vital for maintaining a vibrant and respectful online community.
    We hope you are looking forward to this feature and look forward to any comments you may have.

    View full blog entry
  18. Like
    SeNioR- reacted to opentype in Pages in Clubs, observations so far   
    1. Member posting is now working with the latest patch 👍
    2. Database records made in clubs do not appear in feeds, not the club feed or the Activity feed. I have seen reactions to records though. 
    3. Pages Feed Blocks don’t honor club-level access permissions. On the club level, I turned off access for “Members not in this club” and the records can’t be accessed by non-club-members. But Pages Feed blocks for the database contain these records, despite “honor permission” being activated. The goal here would be to create a “latest news (or whatever the content is) from the clubs I am a member of” block. 
    4. Adding a category in a club is missing the Description field
    5. Not making a Pages category in a club public leads to a confusing, generic error message, which doesn’t tell the user to join the club to access the content. I think the error should be clearer, or the Pages category tab should be hidden from the club, as it is done with Forums in clubs. Right now, it’s inconsistent. Forum tabs disappear, Pages tabs lead to an error. 
  19. Like
    SeNioR- reacted to Eleeist in forums.front.index.forumRow throws on default theme in one forum   
    Since applying the 4.7.16 hotfix from today, on default theme with no modifications, we started getting template error in forums.front.index.forumRow template in one of the forums.
    On further debugging
    {{$count = \IPS\forums\Topic::contentCount( $forum, TRUE );}} returns post count followed by plus sign +, which throws when passed to
    {number="$count" format="short"}  since it's not a number.
    This happens for just one subforum.
    I've updated site access details in Client Area if you would like to have a look 🙂 The forum ID which returns this strange count is 111.
  20. Like
    SeNioR- reacted to David N. in Frustrating behavior: clicking a notification replaces an open page in browser, can't retrieve it?   
    For example when I've typed something in Facebook and I accidentally try to close the tab, I get an alert stating I'm about to lose any unsaved content, and asking me to confirm. Maybe something like that could be a solution. 

  21. Like
    SeNioR- reacted to Marc Stridgen in Frustrating behavior: clicking a notification replaces an open page in browser, can't retrieve it?   
    I have tagged this for the attention of our developers to have a read of. I cant see how we can control this, however Im not one of the developers myself, so its not to say someone else might
  22. Like
    SeNioR- reacted to Grafidea in 4.7.16 BUG - Topic Feed - Widget   
    Hi, after updating to 4.7.16, my Topic Feed stopped displaying. It's only visible when I disable the option: 'Honor permissions?.'
    If the 'Honor permissions' function is enabled, the Topic Feed does not display, but when I disable this option, it does display. Previously, it displayed without any issue, but after updating to 4.7.16, this error occurred.

     
  23. Like
    SeNioR- reacted to Adriano Faria in Wrong error message when using maxItems on a Stack field   
    For example: if I set 4 as maxItems on a Stack field, I get the message:
    which is not right. It should be "You must provide up to 4 items" or something like that.
    Language bit: form_items_max.
  24. Like
    SeNioR- reacted to Nathan Explosion in 4.7.16 - pruneipaddresses task errors due to duplicate PRIMARY keys   
    Reporting it as it just occurred on my live site...
    UPDATE `core_members_known_ip_addresses` `core_members_known_ip_addresses` SET `ip_address`='' WHERE ip_address != '' AND last_seen <1709136738 IPS\Db\Exception: Duplicate entry '0138fdaa72c8135e62b3487f5be7b11d-2970-' for key 'PRIMARY' (1062) #0 /home/fbaeefdf/live.ynwa.tv/system/Db/Db.php(1159): IPS\_Db->preparedQuery() #1 /home/fbaeefdf/live.ynwa.tv/applications/core/extensions/core/IpAddresses/Logins.php(33): IPS\_Db->update() #2 /home/fbaeefdf/live.ynwa.tv/system/Member/Member.php(6504): IPS\core\extensions\core\IpAddresses\_Logins->pruneIpAddresses() #3 /home/fbaeefdf/live.ynwa.tv/applications/core/tasks/pruneipaddresses.php(43): IPS\_Member::pruneAllLoggedIpAddresses() #4 /home/fbaeefdf/live.ynwa.tv/system/Task/Task.php(281): IPS\core\tasks\_pruneipaddresses->execute() #5 /home/fbaeefdf/live.ynwa.tv/applications/core/modules/admin/settings/advanced.php(751): IPS\_Task->run() #6 /home/fbaeefdf/live.ynwa.tv/system/Dispatcher/Controller.php(107): IPS\core\modules\admin\settings\_advanced->runTask() #7 /home/fbaeefdf/live.ynwa.tv/applications/core/modules/admin/settings/advanced.php(38): IPS\Dispatcher\_Controller->execute() #8 /home/fbaeefdf/live.ynwa.tv/system/Dispatcher/Dispatcher.php(153): IPS\core\modules\admin\settings\_advanced->execute() #9 /home/fbaeefdf/live.ynwa.tv/admin/index.php(13): IPS\_Dispatcher->run() #10 {main} I believe this is a knock-on effect of it NOT having been pruning the IP addresses correctly previously - the issue you'll have is that there could be multiple entries for a specific device_key and member_id, but with different IP addresses. Now that task has been fixed to do the pruning, when it tries to remove the IP address on those multiple entries, the PRIMARY key for each row will end up being the same as the key is made up of device_key, member_id, IP address (which is now blank)
    Sample content attached:core_members_known_ip_addresses.sql
    When the query in the task runs against that data, the error occurs:
    UPDATE `core_members_known_ip_addresses` `core_members_known_ip_addresses` SET `ip_address`='' WHERE ip_address != '' AND last_seen <1709135288
     
     
  25. Like
×
×
  • Create New...