Jump to content

Martin A.

Clients
  • Posts

    4,230
  • Joined

  • Last visited

  • Days Won

    21

Martin A. last won the day on December 3 2022

Martin A. had the most liked content!

Recent Profile Visitors

60,345 profile views
  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.
×
×
  • Create New...