Jump to content

Adriano Faria

Clients
  • Joined

Everything posted by Adriano Faria

  1. 4.7.12: You will have to add an extension, anyone, just to the system create the extension.json for you.
  2. Just to save your time, @Gauravk, there's nothing in Members Shop that handles IPS Connect or any other type of external connection.
  3. Not supported for years.
  4. This can help as it will reduce significantly the work: you would need to set up the permissions for one forum and then copy to others. https://www.sosinvision.com.br/index.php?/file/64-copy-permissions/
  5. This is not a competition, Dawpi. 🙂
  6. Your rules page is back: Rebuilt cache to make sure the changes will reflect in cache files.
  7. I can remove them via the database if you allow me.
  8. You have 3 rules to be used in the Videos app, which you haven't installed. I suspect it is trying to load that app and not finding it.
  9. Are there too many people following the forum you’re creating the topic?
  10. https://www.sosinvision.com.br/index.php?/file/302-remove-pages-from-search/
  11. Not sure this will be available somehow in V5 so I’ll go with the postToggleEnable. 👍
  12. That works for node controllers (disable and app, plugin, etc.). Application class isn’t a controller.
  13. Is this information available here somewhere ? Is there any method to add in my Application() to toggle the app state or do I need a hook? In case it is a hook, will it be available on IPS5?
  14. This one will use different number of topics/groups per forum. https://www.sosinvision.com.br/index.php?/file/66-number-of-topics-per-forum/
  15. If you have a 3rd-party resource that adds a new login method and disables the app, the new login method keeps showing up in Login & Registration -> Methods tab and in Account Settings: - Apps disabled: - Login methods: - Account Settings: Thank you.
  16. Edit their groups and enable Can vote in polls? in Content tab.
  17. For the option selected, should appear Guest_JoeJonasBF.
  18. You can already do that without templates edit by using a free plugin: https://www.sosinvision.com.br/index.php?/file/250-user-options-in-postbit/
  19. if( \IPS\Member::loggedIn()->member_group_id == \IPS\Settings::i()->guest_group )
  20. There's a 3rd-party resource if you're ok using it:: https://www.sosinvision.com.br/index.php?/file/57-groups-sorting-management/
  21. No worries. I just wanted to leave it clear because you know how it works when there's a 3rd-party item in the game.
  22. Since you mentioned me here, I will reply as I replied on my board. This is the only DELETE it has: try { $follow = \IPS\followspecificcontent\Follow::load( \IPS\Member::loggedIn()->member_id, 'cfe_member_id' ); $follow->delete(); } catch ( \UnderflowException $e ) { parent::unfollow(); } The \IPS\followspecificcontent\Follow model is: <?php namespace IPS\followspecificcontent; if( !\defined( '\IPS\SUITE_UNIQUE_KEY' ) ) { header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' ); exit; } class _Follow extends \IPS\Patterns\ActiveRecord { protected static $multitons; public static $databaseTable = 'followspecificcontent_data'; It doesn't delete records from core_follow and most importantly: the delete in my app happens when the member UNFOLLOWS the member. Well, it would be very funny if a delete in my table could delete data from core_follow too. As I truly believe it doesn't do that, it's not my app problem.
  23. Check with IPS if that setting applies to members too.