
Everything posted by Randy Calvert
-
What does "Track" do on gift card?
Yes…. Notice how you’re viewing the INVOICE? Clicking the track button will track that invoice. It does not matter what the product is…. You’re not tracking “Gift Card”. You are tracking invoice 1554. The invoice is paid now, but if it gets refunded for example…. In most cases though, there is not a lot of value in tracking a paid invoice. Most people use it for unpaid invoices.
-
Rotated images after upload
The beta is available now. IPS does not give exact dates and instead just notes when it’s ready. But I would imagine within a few weeks based on past releases.
-
Lots of spam today
Look at the CleanTalk plugin. It’s done a great job of reducing spam registrations and Contact Us spam messages.
-
Google Analytics Integration
I’m flying right now but just wanted to take a moment to say THANK YOU to everyone who has contributed, especially @Martin A. I can’t wait to try this out and report back. I originally had put this in the theme which does work but I’ve been intentionally trying to avoid updates to the raw HTML as it means it does not get updated automatically on upgrade. I’ve also recently added more themes so it means touching multiple themes each time as well. This would let me avoid the work all together on each update.
-
Making and Reading a Forum Posts From Email
Coming from experience… within a few months if you ever make a change again, they’ll complain saying they liked the old version better. It always ends up working out like that. 🙂
-
Making and Reading a Forum Posts From Email
If they follow the post and choose to receive email notifications. They can subscribe to an RSS feed of forum posts. No. This may be somewhat of an adjustment but it’s going to end up a better experience for them.
-
[Bug] Unsubscribe links are all broken
I’ve seen something happen with password reset emails which I assume is the same root cause with Sendgrid. It does not seem to happen with ALL e-mails but rather on some percentage of them.
-
Internal server error - Bluehost
If you cannot even load the checker script, it sounds like a host issue. The checker script can stand alone and does not have any requirements to execute. If it is not able to display, it’s a config issue at the server end or the files were not uploaded right.
-
PHP version and community not working...
It's possible you're running multiple versions of PHP. Load a phpinfo script and see what it reports. I'm betting you'll find your web server is returning a version that is not compatible even though the default CLI version might be 7.4.
-
Welcome Quick setup
What are you confused about? We'll be happy to help provide more guidance. Are you confused by the directions that @Sonya* provided on how to access the Quick Start? Or now that you can access it, you still don't know how to get rolling?
-
How to prevent search engines from indexing any content of the forum?
That's the correct area. Change the select option to "Custom" and paste the two lines that I gave you there. As bots re-crawl the site, they will see that entry and receive your instruction to not crawl it.
-
How to prevent search engines from indexing any content of the forum?
If you don't want search engines crawling your site at all, use the robots.txt code I gave you above. It says regardless of user agent (meaning Google, Bing, or anything at all that references robots.txt), disallow the root. If it disallows the root, it won't crawl the rest of the site. And remember... that code does not remove anything that is already crawled. It stops new crawls. So you might need to use Google webmaster tools to request anything already there be removed.
-
How to prevent search engines from indexing any content of the forum?
A couple of notes... Google crawls your site as a guest. That means if Google can see/access it, so can the rest of your non-paid membership. You might want to review your forum guest permissions. The Robots.txt in that link is for SEO purposes. So that Google crawls the areas of your site that contains content and not things like profiles which don't add a lot of value. If you want to ask all search engines to not crawl your site at all, you need to use something like the following in your robots.txt. User-agent: * Disallow: /
-
Rotated images after upload
Matt says this is fixed in the next release.
-
IP Gallery
https://invisioncommunity.com/contact-us/ Choose Accounts and Billing department.
-
Google Analytics Integration
I'm trying to add additional logic to my site to better track logged in users vs non logged in user activity. If you set a gtag with the user_id name, it will tie that session to a specific account. If I add the Analytics code to the Global Template in a theme, I can use something like: <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXXX-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('set', {'user_id': '{member="name"}'}); gtag('js', new Date()); gtag('config', 'UA-XXXXXXXXXX-1'); It would return the user_id as the username of the currently logged in user. However that code does not work if I move it to where it SHOULD go within the Google Analytics code in the Intergrations section. Since that area does not have access to template logic, it obviously does not work. Is there a way I can return the logged in username via JS?
-
500 Errors after updating plugins (hooks.php)
Zlib support is not enabled by DEFAULT in PHP. It sounds like starting in PHP 8, cPanel is turning it on with their default builds. So if it's problematic for your community, the solution is to turn it back off. Now... should cPanel just not include it at all again? That's not my place to say. There are lots of other software packages out there that might support it. But in terms of PHP and PHP modules.... if a module is causing a problem for you in general the solution is to turn it off. 🙂
-
500 Errors after updating plugins (hooks.php)
https://manage.accuwebhosting.com/knowledgebase/3602/How-to-enableordisable-zlib-compression-in-cPanel.html
-
Please upgrade before 1 July 2022. After that date, your site will be automatically!
It has nothing to do with AWS. It has to do with the software IPS has deployed running their cloud. They can’t keep running old software forever because you don’t want to upgrade. If staying on an old version is important, it might make more sense to self host.
-
Logo Header dissapears after login?
The logo is not removed in the default theme. Either you have a custom or out of date theme, or a 3rd party plugin interfering with it.
-
Can't enable "Trust IP addresses provided by proxies"
Sounds like the IPS staff might need to take a look. Have you made sure login info is updated in your Client Area? 🙂
-
Can't enable "Trust IP addresses provided by proxies"
Out of curiosity... have you tested this in a different browser? I've noticed sometimes settings on different sites get cached in the browser and temporarily switching to a different one resolves the situation.
-
Wall of Fame -Top Topics/Member /Forums /Moderators
This looks to be related to a 3rd party application. Try disabling the “famewall” application.
-
Redis not being recognized
That would do it. Once you installed it, a reboot will cause the new version to take effect. I’m glad you were able to get to the bottom of the situation!
-
Redis not being recognized
Do you run multiple versions of PHP on the same machine? Last time I saw this happen, the CLI was returning the older version whereas the domain was on the newer version. In your ACP support section is a link to a phpinfo output. Does it show the redis module loaded? It should look like: