Jump to content

DawPi

Clients
  • Joined

  • Last visited

Everything posted by DawPi

  1. DawPi replied to ᴀʀᴄᴀᴅᴇ's post in a topic in Technical Problems
    Did you buy the Cloud version maybe? Then there is no way to direct access to the DB I am afraid. The only way to back up or download the whole DB is contact with IPS Team.
  2. PM? Private Message? 🧐
  3. I have mod for that: PM me if you're interested.
  4. Check your prefix in the conf_global.php. I think there is missing "_" after the "ipb". Should be (?) "ipb_"? 🤔
  5. Yes I have. 🙂 I've upgraded that app to the latests IPS4 version and PHP 8.x. Fully working. Send me PM/ticket on mine site if you're interested.
  6. Did you bought the (NB41) Enhanced Advertisements in the past maybe?
  7. Yeah, I think the changes from a Member.php file helped.
  8. Thanks. Doing it now. I'll let you know.
  9. Hi, am I the only with this issue or it's a known one?
  10. Yep. Anything that deletes the content of the table instead of deleting the table itself. 😉
  11. I suggest you to truncate that table named ibf_core_sitemap, make the upgrade and rebuild sitemap at the end.
  12. Thanks.... 🫣 🫣🫣 I think I can handle that conversion! We can! 😉 Do it on our/client server. Prepare database and files and you'll be able to import it into your cloud, right? 🧐
  13. You need to contact your hosting company with that issue. 🙂
  14. It's doable. Adriano for example (in public resources) and I (in private only since now) doing it. 🙂
  15. Works only with an ImageMagick.
  16. 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.
  17. Enter "captcha" in the ACP search bar and.. you're done! 🙂
  18. Donnie95 name of the deleted member
  19. https://forum.invisionize.pl/topic/55445-przywracanie-usuniętego-użytkownika/
  20. Hi, Are you saving it in your PHP code? 🙂
  21. Your hosting space is out! 🙂
  22. Both apps belongs to @Adriano Faria which take care of it when you contact him. 🫡
  23. What is the question/concern? 🙂
  24. 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