Jump to content

Martin A.

Clients
  • Posts

    4,230
  • Joined

  • Last visited

  • Days Won

    21

 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 Martin A.

  1. If you go to this link, clicking page 1 in the pagination does not do anything at all. you can go to other pages, but it requires a full redirect, not a smooth content replace with javascript. Scroll down a bit before clicking, and notice how you'll end up on top of the page afterwards.

    https://invisioncommunity.com/forums/forum/497-technical-problems/page/3/

    This will only happen if the forum you view have a sub-forum. Works perfectly fine here

  2. On 10/11/2023 at 10:25 AM, stu_m said:

    Hi @Martin A.

     

    How will this be updated now that the marketplace is closing? 

    Will you be continuing to support this in someway? 

    I will not continue supporting this app in IPS 5. I may set the repository on Github for this application to public in a while, unless someone else is willing to take over this application. 

    Support will continue in the 4.x series, and updates will be sent on demand when needed.

  3. On 8/13/2023 at 8:58 AM, MaNiAc LRSC said:

    I have a community wit 70k members, lots of them registered in the community map.

    When opening the map, it takes ages until it works. Until then, nothing respons anymore.

    Please HELP!

    Send me a PM with your community URL if you don't want to disclose it here 🙂 

  4. 20 hours ago, Matt said:

    What do those hooks do?

    This is an app whose only purpose is to get the suite to function how we'd like it to. It's those 50 code hooks, and then an additional 25 template hooks. The most recent one is to the promote class in order to get the text you enter in the promotion popup over to Zapier. Another one is to allow a member to sign in once using their display name, which on successful login will reveal their email address. Some are bug fixes that have been reported but you can't reproduce it.

    Also have one that adds analyzers and filters to the Elastic index which we need to get a proper autocomplete in a different app. 

    One that I really like is one that posts log entries of interest to our Slack channel.

    Can send it to you if you're curious.

  5. 'has_blog' and 'has_gallery' is from IPB 3. Was used as a way to check if a member had a blog or gallery before displaying links to manage them

    <if test="hasblog:|:$author['has_blog'] AND IPSLib::appIsInstalled( 'blog' )">
    	<li><a href='{parse url="app=blog&amp;module=display&amp;section=blog&amp;show_members_blogs={$author['member_id']}" base="public"}' title='{$this->lang->words['view_blog']}'>{parse replacement="blog_link"}</a></li>
    </if>
    <if test="hasgallery:|:$author['has_gallery'] AND IPSLib::appIsInstalled( 'gallery' )">
    	<li><a href='{parse url="app=gallery&amp;module=user&amp;section=user&amp;user={$author['member_id']}" base="public"}' title='{$this->lang->words['view_gallery']}'>{parse replacement="gallery_link"}</a></li>
    </if>

     'conv_password' and 'misc' is also IPB3. Looks like this was the password hash from whatever software you converted from.

    /**
    	 * Joomla!
    	 */
    	private function joomla ( $username, $email, $password )
    	{
    		if ( $this->parent->_memberData['conv_password'] == md5 ( $password . $this->parent->_memberData['misc'] ) )
    		{
    			return true;
    		}
    		else
    		{
    			return false;
    		}
    	}

    All those google_* columns must be from a 3rd party

  6. The Courses app will not be available to self-hosted customers.

    You can not purchase to the creator pro package in order to gain access to the courses app on your current self-hosted setup. You would then need to migrate your community over to the cloud.

    Only customers that have one of their cloud packages can post comments in blog posts and news entries related to cloud-only features.

  7. 13 hours ago, Hisashi said:

    Additional to topic

    There are other service options.

    • Google Cloud
    • Backblaze
    • Wasabi
    • Azure
    • DigitalOcean

    Those highlighted are S3 compatible and can be used by Invision Community.

     

    14 hours ago, Hisashi said:

    Maybe I didn't use the correct term for this suggestion. I think the proper method is SSH

    An option would be created where you would inform the data of the other server that will be used to store the files.

    Then you would create a subdomain to point to the IP of this server.

    Mount it as a volume on your server and access it as if it was part of your file system, and use the "Custom URL" in the file storage setting to point it to the other server.

  8. 4 hours ago, thaivisa said:

    I need to explain more clearly.

    1. I have created a restricted administrator group

    2. Members of this group have the permission r_moderatorstats_manage enabled (see screenshot)Could contain: Page, Text

    3. Members of this group cannot view the Moderator Activity page https://example.com/admin/?app=core&module=stats&controller=moderators (see screenshot)

     

    Could contain: Text

    I understood what you meant, but it works as it should when I reproduced it. The test member could see the stats when it was enabled, but not when disabled. 

    As Randy asked, is this the only group this member is part of? You cannot have the member in an unrestricted primary group, and then have restrictions in a secondary group. Well, you could, but none of the restrictions would be applied to the admin.

    Why do you see the language key instead of the translated string? Is it like this for all other permissions?

  9. 2 minutes ago, galenb said:

    I don't know what "the datastore" is. Can you give me a little more information. One of the goals is to keep the data in the database for historical purposes... so I'm hoping you don't mean I need a "fresh" database.

    He means the /home/xxxxtest/test.xxxx.com/forums/datastore folder. This holds cached data which can mess things up. Emptying this does not cause permanent data loss.

  10. 8 hours ago, Arcade King said:

    Hi

    I run a Retro Pinball and Arcade forum and are using the Community Map for Machine locations on site. I noticed making a secondary category, in this case "Machines on site", the button is missing.

    I've currently got the Main Member Map disabled.

    You have to click "Browse Markers" then select the catagory. Since I'm not using it as a pure member map it would be nice to see a add marker button on sub catagory maps to make it easier to add sites.

    The button above the map is only for entering member locations. All other markers have to go through the "Browse Markers" link. You can also use the "+ Create" menu in the header, which is always available.

  11. 2 hours ago, Arcade King said:

    I just purchased this plugin.

    I seem to be missing that Add Location button as seen in your screen shot 😕

    Hi

    Check your permissions for the "Members" category. The default should be that all member groups except guests are allowed to add markers. That is the only thing that would cause that button to disappear. 

  12. 2 minutes ago, Adriano Faria said:

    This is related to PHP version. Search for Unparenthesized and you'll see tons of topics.

    Looked more like that was an issue where they used IPS 4.4 themes while using PHP 8.

    That is what this is tho. PHP 8 doesn't allow unparanthesized nested ternaries, while PHP 7 did.

  13. Your issue isn't on line 1783, but 885, so this is not related to your custom tabs.
    But it is on line 1783 of the compiled template code, which is sort of impossible to debug.

    Somewhere in the templates there's unsupported ternary usage, or it's still using an old template from the default theme.

    Not an easy thing to debug, but what you're looking for is something like this

    {{$var = $foo ? 1 : $bar ? 2 : 3;}}

    Which should be

    {{$var = $foo ? 1 : ( $bar ? 2 : 3 );}}

     

×
×
  • Create New...