Jump to content

DawPi

Clients
  • Posts

    8,326
  • Joined

  • Last visited

  • Days Won

    19

 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 DawPi

  1. Add spaces before/after " / " in that forum name.
  2. You need check what is that hook name and debug it more deeply, probably with that hook author.
  3. I see trophies reference there still. Are you sure that you disabled everything?
  4. Hello, I need to add custom.css CSS code. It should apply on whole board EXCEPT inside one choosen app. How can I do that? It's doable via CSS? I dumb.. Done. 😉 Just added changes CSS into that app only. 😉
  5. Check for that member ID, then open core_validating table. Find that member and remove row. Then open core_members and find that member info again. Edit and empty whole members_bitoptions. You may lost other informations from that field, but most important is to unlock member account. 😉 This isn't best method to achieve what you want, but should work.
  6. If app was "Locked" then it wasn't recognized as compatible with newest version of IPS4. You need to contact @Adriano Faria and get new version. Installing newer version is the only way to unlock it.
  7. Or.... custom mod for that. 🙂
  8. Argh, forgot to enable cursor on video. See the converter with cursor: 2023-04-06_11-25-28.mp4
  9. Hello, maybe I'll show what I mean on video, here you are: 2023-04-06_11-18-41.mp4 Basically it's looping beetwen steps if I back to any step filles previously and can't finish wizard. What I'm doing wrong? If I won't back by clicking to any previous step then everything is fine. Any clues? The same situation in converter: 2023-04-06_11-22-19.mp4
  10. Where is the rest of your page? 🙂 Maybe you should check content (raw - in the database) of that last post and check for errors?
  11. Hello, such error: In my opinion should not block/lock the apps. 🙂
  12. For a future reference - if you buy any app and have access to your FTP then after purchase download whole app folder from your FTP under applications/ and make copy of that.
  13. If you want to solve it in that way then use: {{if \IPS\Member::loggedIn()->isAdmin()}}
  14. Gosh, sorry, didn't saw it. 😮 Well, it should work fine I think. You have them saved as an array as doc saying: https://invisioncommunity.com/developers/rest-api?endpoint=core/messages/POSTindex
  15. //'to' => [22505], Why you commented it? According to code: /* Verify there are recipients and all the recipients are valid */ if( !isset( \IPS\Request::i()->to ) OR !\is_array( \IPS\Request::i()->to ) OR !\count( \IPS\Request::i()->to ) ) { throw new \IPS\Api\Exception( 'INVALID_RECIPIENT', '1C374/3', 404 ); } else { foreach( \IPS\Request::i()->to as $to ) { if( !\IPS\Member::load( (int) $to )->member_id ) { throw new \IPS\Api\Exception( 'INVALID_RECIPIENT', '1C374/4', 404 ); } } } INVALID_RECIPIENT - * @throws 1C374/3 INVALID_RECIPIENT No recipients were supplied You should really look into code more often. 😉
  16. So you're using not so updated app and not so updated IPS4.... You have it uncompatible. I can provide you manual change if you have access to the files on FTP.
  17. Hello, which version are you using?
  18. It is: Why you thought that is isn't?
  19. Can't confirm. What version are you using?
  20. Hm, I'll take a look soon and let you know. Hm, it should skip it: /* Do not send if author is doing mod action */ if( $item->mapped('author') == \IPS\Member::loggedIn()->member_id ) Could you specify step by step how to reproduce it?
  21. OK, you need to clarify it with the IPS when it's sending and when not I affraid.
×
×
  • Create New...