
Everything posted by Daniel F
-
Automatic Content Moderation option missing in Admin panel
I have literally run into this bug today. Please make sure that you have at least one report type until we fix this issue:)
-
Editing an article does not go into moderation
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?
-
Javascript problem after upgrade
Try to purge the cache on the support site in your ACP
-
[4.7.18] Class must be declared abstract or implement method 'recount'
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
-
Turning off Tags still display tags in Activity, Streams, etc.
I fixed it for the next release
-
[4.7.18] Class must be declared abstract or implement method 'recount'
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?
-
A question regarding IPS5 and Plugins.
Yes, that's correct
-
[this site] forums/front/topics/postContainer bug
Thanks, resolved.
-
Missing language translation?
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 )
-
Add a file to post with REST
I'm afraid, only our GraphQL API supports attachments, there's no REST Endpoint for content attachments yet.
-
Bug Report: Conflict between "Can post anonymously" and "Automatically follow content" functions
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 );
-
Bug Report: Conflict between "Can post anonymously" and "Automatically follow content" functions
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?
-
Bug Report: Conflict between "Can post anonymously" and "Automatically follow content" functions
Since 4.7.16 the follow state is also anonymous/hidden for anonymous content!
-
rest api post request date
Could you share the full request that you're sending to the community, so that I can take a look at this?
-
Created User notification on HTTP POST to /api/core/members
You *could* wrap the constant in a condition checking the path. Something like if( $_SERVER['REQUEST_URI'] == '/api/' ) { \define( 'EMAIL_DEBUG_PATH', '/dev/null' ); }
-
Why am I getting a Fix This message for Redis?
This will be fixed in the next release:)
-
OutOfRangeException::0
We will release soon a patch which will resolve this.
-
Where is data for categories and sub-cats stored in the SQL database?
The title and description is stored as language string in the core_sys_lang_words table
-
OutOfRangeException::0
😉 Check your emails please
-
OutOfRangeException::0
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
-
Bulk Mail does not send mail
-
Removal of the "community" out of a community suite.
And you can also visit https://www.invisioneer.org/marketplace/ if you're interested into a directory with available 3rd party apps and plugins
-
Where is data for categories and sub-cats stored in the SQL database?
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?
-
Archive function no longer works after changing settings
What was the issue?
-
REST API create message problem
[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