Jump to content

Adriano Faria

Clients
  • Posts

    31,564
  • Joined

  • Days Won

    473

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Adriano Faria

  1. Again, TWITTER, not the 3rd-party resource. A few topics: https://invisioncommunity.com/forums/topic/474677-twitters-mid-life-crisis-and-the-ips-promotions-feature/ https://invisioncommunity.com/forums/topic/472006-twitter-ending-free-api-access/ And here's a post where Matt says it will be removed: https://invisioncommunity.com/forums/topic/474677-twitters-mid-life-crisis-and-the-ips-promotions-feature/?do=findComment&comment=2947466
  2. Sorry, Comics went too bad in Sales (I didn’t even update it to 4.5) and this one doesn’t worth the time I’ll have to spend to maintain it.
  3. The issue is probably the Twitter. There are a lot of topics recently on IPS about that.
  4. Nope. Personal data is the user name, email address, photo, IPs, etc. Content isn’t personal.
  5. The new version is pending since yesterday. It's done. Sorry, it seems I missed this one. Nope, not possible. This is not "Forum" resource and it uses an existing stream to grab the counter.
  6. It was like that. IPS changed the behavior and it doesn't reload the page anymore. I'll see what I can do.
  7. You can also create an app and add a MemberSync extension and add your stuff in onProfileUpdate method.
  8. Why don’t you ask for support in the theme support topic?
  9. Do you have FTP access? As marketplace accepts only one version of each resource, I’ll have to fix it in your board. If you have, send a message with FTP details and an Admin CP account.
  10. For 4.6 is the version you are using. 1.1.0 is for 4.7.
  11. No. Just go to the marketplace in your ACP and you will see an upgrade notice. If you can’t see it, search for generic in the ACP marketplace and update it. EDIT: make sure the plugin was installed after the upgrade. It is an application now.
  12. Upgrade to the latest and let me know if it insists.
  13. Even using the old version, this resource doesn’t create warnings; it changes the author for the generic moderator. Does it stop getting duplicated with it disabled?
  14. @Stuart Silvester, I tried to find the topic/post where I asked you about this but didn't find it so I'm creating a new topic. This shows as FIXED in 4.7.7 but is still a problem on 4.7.11.1. That's how the app hook shows after the app install: /** * @mixin \IPS\core\Messenger\Message */ class messengerenh_hook_messageModel extends _HOOK_CLASS_ { use \IPS\Content\Reactable { try { \IPS\Content\Reactable::canReact as allowedToReact; } catch ( \Error | \RuntimeException $e ) { if( \defined( '\IPS\DEBUG_HOOKS' ) AND \IPS\DEBUG_HOOKS ) { \IPS\Log::log( $e, 'hook_exception' ); } if ( method_exists( get_parent_class(), __FUNCTION__ ) ) { return \call_user_func_array( 'parent::' . __FUNCTION__, \func_get_args() ); } else { throw $e; } } } ... If I clean the code to: /** * @mixin \IPS\core\Messenger\Message */ class messengerenh_hook_messageModel extends _HOOK_CLASS_ { use \IPS\Content\Reactable { \IPS\Content\Reactable::canReact as allowedToReact; } ... it works as expected. Thank you.
  15. Let me try. Official app X. Template Y. Via plugin, I've made some changes to the template Y and these modifications aren't present when the user creates a block in Pages to display the template Y. Is this the expected behavior?
  16. I have a version from IPS 4.2 from this: https://invisioncommunity.com/files/file/8859-staff-applications-system/ It used a dummy category. I don’t remember any issue related to sitemap. It won’t run in 4.7 obviously but you can take a look on its category model and public controller. Let me know if you want to take a look. If so, I’ll send a link via message.
  17. I did: So let me try again, in a simpler way. A background task is fired when the app is installed; last process on it, actually. As you might know, background tasks (queue) runs based on a task that runs at every minute or so, if you’re using Cron; if you’re not, it might take a few minutes. After start, it will copy the data from the plugin table to a new table created by the app. Depending on how many records you have, it can take more than one batch to go through all records and insert into new table. The whole process can take a few minutes, again, depending on your server configuration/number of records. So if you went immediately to Plugins page and manually uninstalled it, you deleted the data from real moderators of your warnings. All you had to do was: go to Dashboard (you would see the background task there); wait a couple of minutes or even ask in this topic before uninstall the plugin. Btw, I’ll release a new version to add a routine (existing in the plugin and forgotten in the app) to swap the generic moderators for the real one when uninstalling the app.
  18. If you’re talking about USER POSTS IN TOPIC and not WHO POSTED IN THE TOPIC, yes, it’s there. Use the right support topic if you need help.
  19. A background task runs after the app install to move data from the plugin to the app table. Plugin will be uninstalled after this process. No, you don’t need to set a moderator for each type. It will use the setting if it hasn’t. Worked fine to me. Can’t reproduce.
×
×
  • Create New...