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

Posts posted by DawPi

  1. To be honest, it's quite easy to reproduce. See this:

    Could contain: Text, Page

    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.

  2. 2 minutes ago, Donnie95 said:

    Restoring from binlog is too hard.

    I remember there was a plugin that could change the topic author, but I can't recall its name or where to find it.

    I believe I can use it to assign the "Guest" posts to a new account, then recalculate the reputation and post count.

    https://forum.invisionize.pl/topic/55445-przywracanie-usuniętego-użytkownika/

  3. 7 hours ago, HDiddy said:

    Sorry don't take this as rude, but why show us something to help fix it, if your not going to provide it to anyone (paid or free)?

    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

     

  4. 6 minutes ago, Eleeist said:

    I believe it could be achieved with custom friendly URLs: System->Settings->Advanced Configuration->Friendly URLs

    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.

  5. It won't work in my situation I affraid. I needed to change that part in the uploader but... It's done. I've added custom script code before body end:

    <script defer>
    $(document).ready(function() {
      (... rest of the code ....)

     

    But thanks for your efforts!

×
×
  • Create New...