Everything posted by Adriano Faria
-
Custom application broken with latest update
4.7.12: You will have to add an extension, anyone, just to the system create the extension.json for you.
-
System logs - uncaught exception - please help
Just to save your time, @Gauravk, there's nothing in Members Shop that handles IPS Connect or any other type of external connection.
-
How to enable unread topic effect?
Not supported for years.
-
Permissions for new groups
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/
-
Template Error in Achievement Rules
This is not a competition, Dawpi. 🙂
-
Template Error in Achievement Rules
-
Template Error in Achievement Rules
I can remove them via the database if you allow me.
-
Template Error in Achievement Rules
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.
-
Slow posting new topics but fast to post replies
Are there too many people following the forum you’re creating the topic?
-
Default search option showing as Pages?
https://www.sosinvision.com.br/index.php?/file/302-remove-pages-from-search/
-
[BUG] Apps that adds new longin methods
Not sure this will be available somehow in V5 so I’ll go with the postToggleEnable. 👍
-
[BUG] Apps that adds new longin methods
That works for node controllers (disable and app, plugin, etc.). Application class isn’t a controller.
-
[BUG] Apps that adds new longin methods
Via a hook?
-
[BUG] Apps that adds new longin methods
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?
-
Limit number of new topic
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/
-
[BUG] Apps that adds new longin methods
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.
-
Members can't answer the poll
Edit their groups and enable Can vote in polls? in Content tab.
-
Dev Site Delete Member Issue
For the option selected, should appear Guest_JoeJonasBF.
-
How do I make a "contact me" link that pops up a messenger window?
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/
-
Limit JS script loading to specific usergroups
if( \IPS\Member::loggedIn()->member_group_id == \IPS\Settings::i()->guest_group )
-
Replying to statuses in profiles hangs
- Set Groups Order manually
There's a 3rd-party resource if you're ok using it:: https://www.sosinvision.com.br/index.php?/file/57-groups-sorting-management/- How could a member lose 4K+ followers?
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.- How could a member lose 4K+ followers?
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.- How could a member lose 4K+ followers?
- Set Groups Order manually