Jump to content

sobrenome

Clients
  • Posts

    2,525
  • Joined

  • Last visited

 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 sobrenome

  1. Are the latest versions of REDIS and ELASTIC SEARCH supported by 4.6?
  2. I had the same issue. The message should not be something went wrong, but you need to renew the app license!
  3. Is Instagram still accepting logins? I tried to update my Instagram Login Handler that was not working anymore and I saw this message on Facebook Developers:
  4. How could I set the $pmSender as the same as receiver $member? I have tried: public function messageMembersSend( $member, $subject, $content ) { /* Setup pm title and msg */ $msgTitle = $subject; $msgPost = $content; \IPS\Member::load( $member )->language()->parseOutputForDisplay( $msgTitle ); \IPS\Member::load( $member )->language()->parseOutputForDisplay( $msgPost ); /* Set the receiver */ try { $member = \IPS\Member::load( $member ); } catch( \OutOfRangeException $ex ) { return; } /* Set pm sender */ try { $pmSender = \IPS\Member::load( $member ); } catch( \OutOfRangeException $ex ) { return; } /* Valid sender? */ if( !$pmSender->member_id ) { return; } /* Create conversation */ $conversation = \IPS\core\Messenger\Conversation::createItem( $pmSender, $pmSender->ip_address, \IPS\DateTime::ts( time() ) ); $conversation->title = $msgTitle; $conversation->to_member_id = $member->member_id; $conversation->save(); /* Add message */ $message = \IPS\core\Messenger\Message::create( $conversation, $msgPost, TRUE, NULL, NULL, $pmSender ); $conversation->first_msg_id = $message->id; $conversation->save(); /* Authorize everyone */ $conversation->authorize( $member ); $conversation->authorize( $pmSender ); /* Send notification */ $notification = new \IPS\Notification( \IPS\Application::load('core'), 'private_message_added', $conversation, array( $conversation, $pmSender ) ); $notification->send(); } But I get an error: 4C124/6 Illegal offset type in isset or empty I am trying to send an error message to myself on a plugin.
  5. Nice! I will learn and build! First doubt: plugin or app for just some tasks?
  6. Can custom task methods be added?
  7. I like fast!! I have been begging for a faster IPS with less JavaScript and less CSS burden and maybe font awesome 6 could also be added to the light speed petition!
  8. No working plugin until now for 4.5. IPS should consider a built in WhatsApp sharing button.
  9. Sorry about that. I will ask for it on feature suggestions. Thanks!
  10. For topic feed, superblocks are coded like this: removed Image thumbnail and actual image are the same: {{$items[$counter]['image']= $firstPhoto;}} {{$items[$counter]['image_thumb']= $firstPhoto;}} Is there a way to show the thumbnail on superblocks topic feed?
  11. As soon as the background processes ended the errors were gone! Thanks!
  12. Had the same issue. After renew could update. And while the background process was running, had 500 error on forums topics and error system logs on themes.
  13. My translation is missing the link. I will look at the original English entry. Thanks. Any plans to add the rebuild tool on Pages?
  14. Could not find it on 4.5. Was this feature removed?
  15. Is this for forums only or also for Pages and Gallery?
  16. @Jordan Invision any chance to get the moderation control over wiki contributions on 4.6? We are not using this great IPS feature yet because without moderation our community can loose great content to spam.
  17. It would be amazing to use IPS with Next.js. I did all that I could to meet google core web vitals standards, but my community is still ranked as poor. With the current IPS software design I suppose that is impossible to be ranked as fast by google. And for those that need Adsense, absolutely impossible.
  18. We need faster communities to better ranking in google. Do we still need to load JQuery? Or the community could be updated to use only vanilla JavaScript and drop one more file that slow down the loading? 😁 https://tobiasahlin.com/blog/move-from-jquery-to-vanilla-javascript/
×
×
  • Create New...