Jump to content

sobrenome

Clients
  • Joined

  • Last visited

Everything posted by sobrenome

  1. Anyone using Instagram login handler?
  2. Will thumbnails be resized to a new webp file? I mean, if a webp image is uploaded the system will create a webp thumbnail from it?
  3. It depends on your content. Post your settings and describe how are the usual topics on your community. You can give more importance to fresh content or not. Higher ranking to titles or not. And make the inicial search for a phase using all words or search for each one individually.
  4. Add a follow button!
  5. Have you tried elastic search?
  6. Any good news about gallery new features and refresh look?
  7. Can we use the latest elastic search version already?
  8. Any news about this? The system could be integrated with Amazon aws or cloudflare. Very very needed features for my community!
  9. Please take some time to make wiki a usable feature with moderation. I want to use it so much! But without moderation spam can take over and destroy great content.
  10. Any noticeable speed gains? How is it scoring on PageSpeed Insigths?
  11. Are the latest versions of REDIS and ELASTIC SEARCH supported by 4.6?
  12. I had the same issue. The message should not be something went wrong, but you need to renew the app license!
  13. 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:
  14. 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.
  15. Nice! I will learn and build! First doubt: plugin or app for just some tasks?
  16. Can custom task methods be added?
  17. sobrenome replied to The Old Man's post in a topic in Feedback
    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!
  18. No working plugin until now for 4.5. IPS should consider a built in WhatsApp sharing button.
  19. Any news about this feature?
  20. Sorry about that. I will ask for it on feature suggestions. Thanks!
  21. 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?