Jump to content

DawPi

Clients
  • Posts

    8,343
  • 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. 8 minutes ago, Dll said:

    It's because of the caching on the cloud - only the first guest every 10-15 minutes is counted, the rest hit the cache. 

    What caching? Could you elaborate?

    IPS changed it and removed guests caching, see:

    Quote

    Deprecations and Removal Announcements

    Completed in this release

    • (....)
    • Guest Page Cache removed (this is a legacy way to cache pages that replicates how a CDN works) - No action required

     

  2. You may adjust that by adding it to constants.php file:

     If your web host or email provider cannot handle sending many emails at once, you can optionally add the following line to your constants.php to set a number to process per bulk mail cycle. In this example we are setting it to 25 per task cycle.
    
    define ( 'BULK_MAILS_PER_CYCLE', 25 );

    Use 100 or higher. Make sure that your hosting provider handle that large number mails per batch!

     

  3. 32 minutes ago, Marc Stridgen said:

    Classic - You would need to ensure you have a server with the minimum requirements necessary, create a database, upload the files, then run the installer.

    Which is pretty easy these days too. 🙂

  4. Hello,

    error:

    Undefined array key 0

    Full track:

    #0 \applications\convert\sources\Software\Core\Invisioncommunity.php(692): Whoops\Run->handleError(2, 'Undefined array...', 'C:\\wamp\\www\\45\\...', 692)
    #1 \applications\convert\sources\Library.php(285): IPS\convert\Software\Core\_Invisioncommunity->convertMembers()
    #2 \applications\convert\modules\admin\manage\convert.php(559): IPS\convert\_Library->process(NULL, 'convertMembers', 100)
    #3 \system\Helpers\MultipleRedirect\MultipleRedirect.php(93): IPS\convert\modules\admin\manage\_convert->IPS\convert\modules\admin\manage\{closure}(NULL)
    #4 \applications\convert\modules\admin\manage\convert.php(579): IPS\Helpers\_MultipleRedirect->__construct(Object(IPS\Http\Url\Internal), Object(Closure), Object(Closure))
    #5 \system\Dispatcher\Controller.php(107): IPS\convert\modules\admin\manage\_convert->runStep()
    #6 \applications\convert\modules\admin\manage\convert.php(45): IPS\Dispatcher\_Controller->execute()
    #7 \system\Dispatcher\Dispatcher.php(153): IPS\convert\modules\admin\manage\_convert->execute()
    #8 \admin\index.php(13): IPS\_Dispatcher->run()
    #9 {main}

    I've fixed it by changing that line:

    $libraryClass->convertMember( $row, $profileFields, $profilePhotoName, $path . ( isset( $bits ) ? $bits[0] : '' ), NULL, $coverPhotoName, $path . ( isset( $coverBits[0] ) ? $coverBits[0] : '' ) );

    Into:

    $libraryClass->convertMember( $row, $profileFields, $profilePhotoName, $path . ( isset( $bits[0] ) ? $bits[0] : '' ), NULL, $coverPhotoName, $path . ( isset( $coverBits[0] ) ? $coverBits[0] : '' ) );

     

    I'm not sure if it's enough or not, but I want to report it anyway.

  5. 57 minutes ago, AtariAge said:

    It would also be really helpful if there was a way to flag PMs based on certain keywords, at least in specific user groups (such as a "New Members" group) that contained certain words.

    My mod has it:

    Quote
    • Enable keyword monitoring
    • Keywords to monitor
    • Notification Groups: Members from selected groups will be notified when someone sends a private message that contaims a monitored keyword

     

×
×
  • Create New...