
Solutions
-
Daniel F's post in class loading system , a bug? was marked as the answerAsk him if he has declared the $multitons variable in the classes;)
/** * @brief Multiton Store */ protected static $multitons; -
Daniel F's post in Event cover photo not present in API was marked as the answerThat's correct, the cover photo isn't included (yet) into the REST API response
-
Daniel F's post in How to 301 a deleted URL? was marked as the answerYou could use your htaccess file if you're self hosted, or use a 3rd party application like this one for IC5
-
Daniel F's post in Default homepage was marked as the answerSet the default application to define the application
Set the module which you want as landing page as the default one
-
Daniel F's post in Subscription Application was marked as the answerCorrect 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!
-
Daniel F's post in Club - Message Members was marked as the answerCorrect. I have a similar 3rd party app but the one from your screenshot isn't mine.
-
Daniel F's post in [4.7.20] SDK download - Please!! was marked as the answerPlease check now:)
-
Daniel F's post in Bulkmail via smtp - How to limit was marked as the answerThis can be set with the BULK_MAILS_PER_CYCLE constant
-
Daniel F's post in Google is saying 'Document does not have a meta description' was marked as the answerhttps://invisioncommunity.com/4guides/promotion/seo-r295/#metatags
-
Daniel F's post in Analytics button in topic view gives theme error even in default theme was marked as the answerThis should be resolved now.
-
Daniel F's post in "Show that the message has been edited" option was marked as the answerIt's the "Can edit silently?" group setting.
-
Daniel F's post in Gallery Albums show "0" Images was marked as the answerIt seems like the fix wasn't backward compatible. We'll include an upgrade step for an upcoming release to rebuild the counters.
-
Daniel F's post in Hiding Replies to Threads was marked as the answerIt's possible with the "Post Approval" feature, but a moderator would have to enable it in each topic.
-
Daniel F's post in [4.7.18] Class must be declared abstract or implement method 'recount' was marked as the answerI'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.
-
Daniel F's post in I can't find the word 'and' to translate was marked as the answerAh sorry, it's the _list_format_ string.
-
Daniel F's post in How to limit Zapier integration to a subforum was marked as the answerYou could use functions, paths or filters, see https://community.zapier.com/featured-articles-65/3-ways-to-add-conditions-to-zaps-22333
-
Daniel F's post in My IP Address Banned from my Own Site was marked as the answerIt could have been banned if you made too many requests to the IPS API with a wrong key!
-
Daniel F's post in A question regarding IPS5 and Plugins. was marked as the answerYes, that's correct
-
Daniel F's post in Add a file to post with REST was marked as the answerI'm afraid, only our GraphQL API supports attachments, there's no REST Endpoint for content attachments yet.
-
Daniel F's post in Created User notification on HTTP POST to /api/core/members was marked as the answerYou *could* wrap the constant in a condition checking the path.
Something like
if( $_SERVER['REQUEST_URI'] == '/api/' ) { \define( 'EMAIL_DEBUG_PATH', '/dev/null' ); }
-
Daniel F's post in Who posted as anonymous was marked as the answerYou can set the moderators and their permissions in your ACP on the Members => Moderators page.
-
Daniel F's post in asking topic authors to respond to topic answers was marked as the answerOur software sends already emails for solved topics.
Make sure that the "Email author to mark a reply as a solution" setting is enabled
-
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 answerThe 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.
-
Daniel F's post in Can't modify some notification settings was marked as the answerEach notification can be made "not editable" for members by the administrator.
You'll have to review the setting for notifications in your ACP
-
Daniel F's post in How is this sent from forum? was marked as the answerYes, this sounds like the Post Before Registering feature.