Jump to content

DawPi

Clients
  • Posts

    8,335
  • 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. You need to contact your hosting company with that issue. 🙂
  2. It's doable. Adriano for example (in public resources) and I (in private only since now) doing it. 🙂
  3. To be honest, it's quite easy to reproduce. See this: Someone or something is attempting to "hack" or something on the board. In the code, you may try to find it at applications\calendar\modules\front\calendar\view.php: /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? min( array( \IPS\Request::i()->offset, \count( $events ) ) ) : 0; As you can see, there is no check to ensure that the offset value is an integer. Please try changing it to: /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? \intval( \IPS\Request::i()->offset ) : 0; $offset = $offset ? min( array( $offset, \count( $events ) ) ) : 0; Should help.
  4. Enter "captcha" in the ACP search bar and.. you're done! 🙂
  5. https://forum.invisionize.pl/topic/55445-przywracanie-usuniętego-użytkownika/
  6. Hi, Are you saving it in your PHP code? 🙂
  7. Both apps belongs to @Adriano Faria which take care of it when you contact him. 🫡
  8. What is the question/concern? 🙂
  9. It's normal behaviour here. Almost all devs doing that if they something privately done. PM if you're interested and I'll send you more details how and where you may buy it. [ + ] Don't forget that Marketplace was closed here - https://invisioncommunity.com/forums/topic/473428-no-caps-topic-titles/?do=findComment&comment=2967780
  10. I have something very similar - https://forum.invisionize.pl/files/file/818-dp45-buy-new-topics/ You can buy "new topics" packages and use them to create topics in selected (paid) forums.
  11. Restore that template bit. Should help (as it will remove hasMarkers part).
  12. Wroooong answer. You're removing Support Tickets too:
  13. Did you specify the $table->rowsTemplate value? 🙂 It's required for a front DB Helpers if I'm not wrong.
  14. It can't be done from there. Such changes require custom modding. I might be interested in doing something like this so anyone interested PM me please.
  15. Send them money directly on the bank account or PayPal? 🤔
  16. I've done custom mod for reordering screenshots in the Downloads. Working fine on edit or new version page. See: video_1.mp4
  17. This is the same. Open forumRow template bit, find: Find: {{$count = \IPS\forums\Topic::contentCount( $forum, TRUE );}} Change to: {{$count = (int) \IPS\forums\Topic::contentCount( $forum, TRUE );}} Does it help?
  18. I can confirm that. Problematic forum has: string(5) "1510+" As a $count. 😉
×
×
  • Create New...