Jump to content

Daniel F

Invision Community Team
  • Joined

Solutions

  1. Daniel F's post in class loading system , a bug? was marked as the answer   
    Ask him if he has declared the $multitons variable in the classes;)
    /** * @brief Multiton Store */ protected static $multitons;
  2. Daniel F's post in Event cover photo not present in API was marked as the answer   
    That's correct, the cover photo isn't included (yet) into the REST API response
  3. Daniel F's post in How to 301 a deleted URL? was marked as the answer   
    You could use your htaccess file if you're self hosted, or use a 3rd party application like this one for IC5
  4. Daniel F's post in Default homepage was marked as the answer   
    Set the default application to define the application
    Set the module which you want as landing page as the default one

  5. Daniel F's post in Subscription Application was marked as the answer   
    Correct and it will continue to work with IC5 after your upgrade!
    This also means that you can just delete the subscriptions in the applications directory!
    PRO TIP(Or lazy Daniel who does this almost daily:D ) : If you don't want to deal too much with backups and restoring them, rename the folder to "to-delete-11-2-2024_subscriptions" and wait few days to see if anything is broken on your site (it really shouldn't, but if something broke after the rename, just rename it back) and if not, then feel free to delete it!
  6. Daniel F's post in Club - Message Members was marked as the answer   
    Correct. I have a similar 3rd party app but the one from your screenshot isn't mine.
  7. Daniel F's post in [4.7.20] SDK download - Please!! was marked as the answer   
    Please check now:)
  8. Daniel F's post in Bulkmail via smtp - How to limit was marked as the answer   
    This can be set with the BULK_MAILS_PER_CYCLE constant
  9. Daniel F's post in Google is saying 'Document does not have a meta description' was marked as the answer   
    https://invisioncommunity.com/4guides/promotion/seo-r295/#metatags
  10. Daniel F's post in Analytics button in topic view gives theme error even in default theme was marked as the answer   
    This should be resolved now.
  11. Daniel F's post in "Show that the message has been edited" option was marked as the answer   
    It's the "Can edit silently?" group setting.
  12. Daniel F's post in Gallery Albums show "0" Images was marked as the answer   
    It seems like the fix wasn't backward compatible. We'll include an upgrade step for an upcoming release to rebuild the counters.
  13. Daniel F's post in Hiding Replies to Threads was marked as the answer   
    It's possible with the "Post Approval" feature, but a moderator would have to enable it in each topic.
  14. Daniel F's post in [4.7.18] Class must be declared abstract or implement method 'recount' was marked as the answer   
    I've run into this too few times in the last weeks and have finally found the reason
     
    So, @Matt created a fancy tool to insert all the traits as @mixins into the Model class,

     
    The weird side effect in phpStorm is, that it expects now the abstract method from DelayedCount too.
    And when you use phpStorms "Add Method Stubs/fix it" feature, it will also add these methods / show all the not implemented abstract methods from the used mixins and at least I just selected them all, because why not.. I expected they were required in my class
    So to avoid this, we have just to be more careful with using all the automatically suggested methods by phpStorm.
     

     
  15. Daniel F's post in I can't find the word 'and' to translate was marked as the answer   
    Ah sorry, it's the _list_format_ string.
  16. Daniel F's post in How to limit Zapier integration to a subforum was marked as the answer   
    You could use functions, paths or filters, see https://community.zapier.com/featured-articles-65/3-ways-to-add-conditions-to-zaps-22333
  17. Daniel F's post in My IP Address Banned from my Own Site was marked as the answer   
    It could have been banned if you made too many requests to the IPS API with a wrong key!
  18. Daniel F's post in A question regarding IPS5 and Plugins. was marked as the answer   
    Yes, that's correct
  19. Daniel F's post in Add a file to post with REST was marked as the answer   
    I'm afraid, only our GraphQL API supports attachments, there's no REST Endpoint for content attachments yet.
     
  20. Daniel F's post in Created User notification on HTTP POST to /api/core/members was marked as the answer   
    You *could* wrap the constant in a condition checking the path.
    Something like
    if( $_SERVER['REQUEST_URI'] == '/api/' ) { \define( 'EMAIL_DEBUG_PATH', '/dev/null' ); }  
  21. Daniel F's post in Who posted as anonymous was marked as the answer   
    You can set the moderators and their permissions in your ACP on the  Members => Moderators page.
  22. Daniel F's post in asking topic authors to respond to topic answers was marked as the answer   
    Our software sends already emails for solved topics.
    Make sure that the "Email author to mark a reply as a solution" setting is enabled
  23. Daniel F's post in [BUG 4.7.17] Adding form fields to \IPS\Content\Item::commentFormElements() doesn't fully work was marked as the answer   
    The way how this works in v5 changed completely and this would be some too big changes for v4 so we'll probably close the bug report for now.
  24. Daniel F's post in Can't modify some notification settings was marked as the answer   
    Each notification can be made "not editable" for members by the administrator.
    You'll have to review the setting for notifications in your ACP

  25. Daniel F's post in How is this sent from forum? was marked as the answer   
    Yes, this sounds like the Post Before Registering feature.