Everything posted by Martin A.
-
Emergency - Site Down from Latest Patch Update
I had the same errors. Gonna throw out a guess that init.php changes aren't applied to patches, as that file hadn't been altered on our server since the middle of August. Uploading init.php from the full download fixed the issue.
-
4.7.16 (This site) Pagination on forums with a sub-forum doesn't "work"
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
-
Community Map
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.
-
Task run times
Unless this is a distributed application, not running in CiC, just make an executable file that you run with crontab at 5:00.
-
Expired License - Can It Be Sold?
Nope. https://invisioncommunity.com/legal/standards/#transfers
-
Martin A.
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) 🙂
-
Community Map
Send me a PM with your community URL if you don't want to disclose it here 🙂
-
Uninstalling Member Map
The latest version there is supposed to do that.
-
v5 news coming soon...
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.
-
v5 news coming soon...
-
Default coluns in core_members
'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&module=display&section=blog&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&module=user&section=user&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
-
Can’t post in your blog
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.
-
[Suggestion] Storage method: FTP
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.
-
How does a restricted administrator view the Moderator Activity Page?
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?
-
Tutorial for making a test install?
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.
-
Tutorial for making a test install?
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.
-
How does a restricted administrator view the Moderator Activity Page?
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.
-
Is there a way to pull sales?
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.
-
Community Map
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.
-
Community Map
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.
-
Fatal Error: Templates
Your issue isn't in the settings. It's in one of the templates.
-
Fatal Error: Templates
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.
-
Fatal Error: Templates
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 );}}
-
4.7.9 release - potential cause of confusion
Nah, they gotta do whatever they can to promote the cloud you know 😉
-
AdminCP Blog RSS Feeds missing HTML formatting
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.