Jump to content

Daniel F

Invision Community Team
  • Joined

Everything posted by Daniel F

  1. I have literally run into this bug today. Please make sure that you have at least one report type until we fix this issue:)
  2. I can't reproduce this. Pages work different, there's also separate database setting called "Edit own records indefinitely" which controls this for databases. Could you please take a look to see if this is enabled?
  3. Try to purge the cache on the support site in your ACP
  4. Weird, nothing in my IDE and I really don't see how this could happen because Application isn't using it at all. Same with v4
  5. I fixed it for the next release
  6. I can't reproduce this in my IDE ( phpStorm 2024.2.1 Build #PS-242.21829.154, built on August 29, 2024 ) What are the exact steps to reproduce this? Which Application.php class will show this?
  7. Are you still seeing this? Banning *@hotmail.com and trying to register with such an email address results in following error for me If an Email address is banned, we'll use an own language string for the error ( form_email_banned )
  8. I'm afraid, only our GraphQL API supports attachments, there's no REST Endpoint for content attachments yet.
  9. That's not the recent code, are you using the recent version? This changed in 4.7.17 $save = array( 'follow_id' => md5( static::$application . ';' . $followArea . ';' . $obj->$idColumn . ';' . \IPS\Member::loggedIn()->member_id ), 'follow_app' => static::$application, 'follow_area' => $followArea, 'follow_rel_id' => $obj->$idColumn, 'follow_member_id' => \IPS\Member::loggedIn()->member_id, 'follow_is_anon' => isset( $values[ 'post_anonymously' ] ) ? (bool) $values[ 'post_anonymously' ] : 0, 'follow_added' => time() + 1, // Make sure streams show follows after content is created 'follow_notify_do' => 1, 'follow_notify_meta' => '', 'follow_notify_freq' => \IPS\Member::loggedIn()->auto_follow['method'], 'follow_notify_sent' => 0, 'follow_visible' => 1 );
  10. I can't reproduce this Are you using any 3rd party apps which are changing the posting behavior? Could you please try this with all 3rd party apps disabled?
  11. Since 4.7.16 the follow state is also anonymous/hidden for anonymous content!
  12. Could you share the full request that you're sending to the community, so that I can take a look at this?
  13. You *could* wrap the constant in a condition checking the path. Something like if( $_SERVER['REQUEST_URI'] == '/api/' ) { \define( 'EMAIL_DEBUG_PATH', '/dev/null' ); }
  14. This will be fixed in the next release:)
  15. We will release soon a patch which will resolve this.
  16. The title and description is stored as language string in the core_sys_lang_words table
  17. 😉 Check your emails please
  18. We have fixed this for the next release. I have also created a ticket so that we can fix this for you in the meanwhile
  19. Yes, the ACP Bulk Mail page will show to how many members it was sent and if it's finished or not.
  20. And you can also visit https://www.invisioneer.org/marketplace/ if you're interested into a directory with available 3rd party apps and plugins
  21. Do you mean forums? In the forums_forums database table, but please don't change any data there manually. May I ask what you're interested into and trying to achieve?
  22. [2] should work fine. Can you post your whole request? Here's a working example code https://invisioncommunity.com/forums/topic/473252-api-rest-apicoremessages/?do=findComment&comment=2937939