Jump to content

DawPi

Clients
  • Posts

    8,333
  • 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. For mobile too please. 😉 Also the most important GIF button too if possible.
  2. If someone has issues with that app I happy to announce that I've upgraded it to newest version of the IPS4/PHP8. I can't release it of course and must be done foe everyone separated. PM me for more details if you're interested.
  3. It's not even stored in cookies? Interesting!
  4. Remove cookies, login again and should be fine.
  5. Which chatbox version you have installed? Did you tried PHP 8.1 instead?
  6. So maybe better option would be update your instructions, Marc? It would help everyone.
  7. Why everyone speaking about exploits form 3rd party developers still? When someone did something like this? This is a definite exaggeration and I ask you to stop such claims.
  8. You need to update my app first to the latest version.
  9. You have error mails logs and the general errors logs. Would you be so kind and share them with us to try help you?
  10. Did you do everything described here? Especially Manual Upgrade part.
  11. Terrible idea. 😉 You can use that app instead:
  12. You can find it in the conf_global.php file under sql_tbl_prefix option. Ouch, you meant prefixes for specific apps. core_ is for everything under the System part. forums_ - forums app, gallery_ gallery app. It's an app key in most cases.
  13. My suggestion is contact @ASTRAPI, he's good and known servers specialist. I'm pretty sure that he would help you with these issues.
  14. Woah. Do not anything via that sql query! What about search index and other important things?
  15. Go here: yourboardurl.com/admin/index.php?app=forums&module=forums&controller=settings&tab=archiving And disable it.
  16. What did you do exactly to make it back online?
  17. Open core_logs SQL table and check latest logs.
  18. I was sure that I saw such mod. And here you are the result: Here is some info though: - file isn't available for purchase, - file author wasn't here a long time. Not sure if he is back or something (read more). My advice - you probably need custom work. You can find someone on a Providers page. 🙂
  19. File: applications\core\extensions\core\Queue\MoveMembers.php Is: /** * Return the query * * @param string $select What to select * @param array $data Queue data * @param int $offset Offset to use (FALSE to not apply limit) * @return \IPS\Db\Select */ protected function getQuery( $select, $data, $applyLimit=FALSE ) { return \IPS\Db::i()->select( $select, 'core_members', $data['where'], 'core_members.member_id ASC', ( $offset !== FALSE ) ? array( $offset, \IPS\REBUILD_SLOW ) : array() ) Should be: /** * Return the query * * @param string $select What to select * @param array $data Queue data * @param int $offset Offset to use (FALSE to not apply limit) * @return \IPS\Db\Select */ protected function getQuery( $select, $data, $applyLimit=FALSE ) { return \IPS\Db::i()->select( $select, 'core_members', $data['where'], 'core_members.member_id ASC', ( $applyLimit !== FALSE ) ? array( $applyLimit, \IPS\REBUILD_SLOW ) : array() )
  20. And those url/image ads exists in the source code but are hidden. The same situation would be with js code - will be executed but wrapped by ipsHide (or something else to hide).
×
×
  • Create New...