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

Everything 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. 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. Unless this is a distributed application, not running in CiC, just make an executable file that you run with crontab at 5:00.
  4. Nope. https://invisioncommunity.com/legal/standards/#transfers
  5. Been doing development on this platform since 2008. Most of my work nowadays are kept private as my clients that the applications to be exclusive. My services include, but are not limited to: Custom development Long-term project Move your files to a 3rd party S3 provider, such as BackBlaze or Wasabi Compatibility upgrades for "dead" projects Code optimizations You can also contact me in Norwegian (or any other Scandinavian language) 🙂
  6. Send me a PM with your community URL if you don't want to disclose it here 🙂
  7. The latest version there is supposed to do that.
  8. 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.
  9. '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
  10. 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.
  11. Those highlighted are S3 compatible and can be used by Invision Community. 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.
  12. 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?
  13. 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.
  14. Also looks like you're using a mix of www.test.domain.com and test.domain.com. All those redirects are between those two URLs. Stick to one of them.
  15. I just followed your exact steps, and I am not able to reproduce this. As you can see, the moderator menu item is also gone.
  16. Depends on what kind of values you need to get. There's two pages related to Commerce income and purchases in the statistics tab in the ACP. You can export that data as a CSV file. It that doesn't work for you it is possible to run some SQL queries to get your data if you have access to the database.
  17. 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.
  18. 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.
  19. Your issue isn't in the settings. It's in one of the templates.
  20. 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.
  21. 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 );}}
  22. Nah, they gotta do whatever they can to promote the cloud you know 😉
  23. You mean the basic stuff, like paragraphs, bold/italic, font sizes and images? In that case I agree, as that doesn't rely on the site's CSS. I though you meant formatting that used the CSS from the site. The gallery and topic feed here do keep those tags, so something wrong must be going on with the Blog feed. Don't have that app myself, so can't check it out for you.
  24. That's the purpose of RSS, it's made to just have the plain text content with a link to the original post. https://invisioncommunity.com/rss/1-invision-community-news.xml ^ Same there
×
×
  • Create New...