Member Map

IPS Suite Member Map 3.6.4.1

Register & Get access to index

Haim

Registered
Haim submitted a new resource:

Member Map - Member Map

There was a 500 error in the admin center and in the public part of the site after moving from php 7.4.23 to 8.1.6 and upgrading Invision Community from 4.6.12.1 to 4.7.11.

applications/membermap/sources/Markers/Groups.php

Find in page 198:
public function getLastCommentTime()
Replaced by:
public function getLastCommentTime( \IPS\Member $member = NULL )

applications/membermap/sources/Markers/Markers.php
Find in page 718:
public...

Read more about this resource...
 

Haim

Registered
Community updated Member Map with a new update entry:

Member Map 3.6.4.1

  • If you have Pages records that have a location stored, this can now be shown in the map
  • It is finally compatible with the Member Location plugin. In the list of profile fields, you'll see an entry for this plugin on top of the list.
    • You may have to press the link in the "Import members" setting to restart the sync process after changing the
  • Added a setting to disable the "Staff" grouping in the member list sidebar
  • Added a setting where you can define the...

Read the rest of this update entry...
 

Haim

Registered
There was a 500 error in the admin center and in the public part of the site after moving from php 7.4.23 to 8.1.6 and upgrading Invision Community from 4.6.12.1 to 4.7.11.

applications/membermap/sources/Markers/Groups.php
Find in page 198:
public function getLastCommentTime()
Replaced by:
public function getLastCommentTime( \IPS\Member $member = NULL )

applications/membermap/sources/Markers/Markers.php
Find in page 718:
public function contentImages( $limit = NULL )
{
$attachments = parent::contentImages( $limit ) ?: array();
Replaced by:
public function contentImages( $limit = NULL, $ignorePermissions = FALSE )
{
$attachments = parent::contentImages( $limit, $ignorePermissions ) ?: array();

Template error (edit every installed template on the site).
Find in membermap > front > markers > groupRow

{{if method_exists( $table, 'canModerate' ) AND $table->canModerate()}}
Replaced by:
{{if $table AND method_exists( $table, 'canModerate' ) AND $table->canModerate()}}
 
Back
Top Bottom