Jump to content

evandixon

Clients
  • Posts

    82
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Thanks
    evandixon reacted to Stuart Silvester in 4.5.1 - Sign into Marketplace when using HTTP Basic Auth   
    You can exclude /index.php?app=core&module=system&controller=marketplace from your password protection
  2. Like
    evandixon reacted to batarjal in Patreon Integration   
    With this plugin site owners can connect a Patreon campaign to their forum allowing members to link their Patreon accounts. Connected members can gain access rights and be shown in top lists helping the monetization of your site.

    Features
    All campaign data will be pulled automatically - The ACP allows easily to assign Patreon tiers to user groups. The campaign image, description text and join button can be shown in a widget. Members can link and unlink their accounts to Patreon form the user menu Settings > Connect Patreon Account. Linked members can be assigned to user groups according to their pledge tier. If a member changes their pledge or unlinks their account the user group assignments can be removed automatically. Widgets for current goal, top patrons and new patrons. Widgets show join campaign link for members that are not already a patron. Pledges, goals and campaign information will be automatically updated in the background to stay up to date. Buy it now
  3. Like
    evandixon reacted to MMXII in Download App Love   
    Yes, the Downloads App needs more attention. Regarding uploads I think it should techincally be possible to allow huge uploads and downloads, even on hosted sites with little to no possibility to configure the php.ini file. I have seen a new version of a Download App (for a competing software) that allowes exactly that. A very nice feature!
    Two more things that come to my mind right away (because I was struggeling with this lately):
    4) Categories should not work like forums. Content in subcategories should also show up in the parent one.
    5) It should be possible to add more than one category to a download.
  4. Thanks
    evandixon got a reaction from Fosters in Trophies and Medals - Supporttopic   
    Fixed this myself with a manual code change, by setting ~/extensions/core/Notifications/TrophyAndMedal.php line 58 to be equal to line 69.
    Old value:
    'author' => \IPS\Member::load( 1 ), // [Optional] The user whose photo should be displayed for this notification New value:
    'author' => \IPS\Member::load( \IPS\Settings::i()->trophy_notification_sender ), // [Optional] The user whose photo should be displayed for this notification  
  5. Thanks
    evandixon got a reaction from Fosters in Trophies and Medals - Supporttopic   
    I found and fixed a race condition that results in trophies being awarded to members who do not meet the criteria. The issue is in /sources/Trophy/Trophy.php on line 193, inside the function formatFormValues.
    #$this->crdata = $data; $values['crdata'] = $data; $this->faicon = $values['faicon']; if ( !$this->id ) { $this->save(); } // ... return $values The problem is that `$this->crdata` is not being set before `$this->save()` is called. IPS will later use the results of this function (`$values`) to update the model, but not before an active background task can assign the trophy.
    The simplest fix is to simply uncomment the line of code on line 193. I have not encountered this issue after applying this fix, but because of the way race conditions work, that doesn't necessarily prove anything.
  6. Like
    evandixon got a reaction from SJ77 in Trophies and Medals - Supporttopic   
    Fixed this myself with a manual code change, by setting ~/extensions/core/Notifications/TrophyAndMedal.php line 58 to be equal to line 69.
    Old value:
    'author' => \IPS\Member::load( 1 ), // [Optional] The user whose photo should be displayed for this notification New value:
    'author' => \IPS\Member::load( \IPS\Settings::i()->trophy_notification_sender ), // [Optional] The user whose photo should be displayed for this notification  
  7. Like
    evandixon got a reaction from SJ77 in Trophies and Medals - Supporttopic   
    I set the Notification Sender to a specific user, but when Trophies are awarded, the resulting notifications show as being from the user with ID 1. Medal notifications are working properly. I'd appreciate assistance in getting this working.
×
×
  • Create New...