
Everything posted by Randy Calvert
-
DKIM for PHP mails?
While I was still self hosted, I 100 percent set it up outside of IPB. If you’re using a control panel like cpanel, Plesk or DirectAdmin, they’ll do it for you. There is nothing that IPS can do that would make it easier because even if they generated a DKIM private key for you, it could not be installed. If you actually need help generating the private key, instead of having IPB do it … there are tons of generators online. https://powerdmarc.com/dkim-record-generator/ You’re asking IPB to do the equivalent of configuring your mail server. These are the high level steps for setting up DKIM: Generate a key pair: You can use your email service provider or DNS management platform to generate a unique cryptographic key pair for your domain. The tool you use will depend on your operating system. 1. Create a TXT record: Add the public DKIM key as a TXT record in your domain's DNS settings. — This is gone with a generator like above. 2. Configure your email server: Enable DKIM signing in your email server or sending platform. — This is done by your control panel or hosting provider (or via SSH root). 3. Test your setup: Verify that DKIM signing is turned on and that DKIM authentication is working. — This is done by you. There is no step in this process where IPB can be realistically inserted in a valuable way. DKIM is not “inserted” into emails. It’s done by the mail server as a signature from what actually sent it. It’s added by your mail server not the raw sent message. Once DKIM is setup, it applied to ANYTHING sent by the mail server for your domain including other PHP scripts your site. Think of it as an hosting account (or root) level function and not a script level function.
-
DKIM for PHP mails?
DKIM has nothing to do with the software. It’s a server level / DNS level function. This is technically impossible for IPS to do for self hosted customers.
-
Upgrade IPB 4.7.17
This did not happen on my upgrades.
-
Member Merge - Some posts merged correctly, some show as "Guest"
When you login to the ACP, is there any activities listed in the background processes section of the dashboard?
-
Member Merge - Some posts merged correctly, some show as "Guest"
I’ve noticed if it’s an account with a lot of posts, merging accounts sometimes show up as guest until the process 100 pct finishes. Have you confirmed the merge activity is actually fully complete. Moving to the new account looks to be the last thing done.
-
Group Promotions Not Working
In looking at the IPB API, it looks like you can get the last login date/time from it. https://invisioncommunity.com/developers/rest-api?endpoint=core/members/GETitem You could have a script created that checks members and then uses the same endpoint as a post to change the member group ID.
-
Group Promotions Not Working
As @teraßyte noted, promotion rules do not just run on some automatic schedule. Instead they run when a pre-determined action is run. This means the rule you want would not trigger because the user never actually logs in. The login would trigger the move from A to B. There is no way to move someone from B to A simply for not logging in. This would require some sort of third party modification to do.
-
Titles of clubs on another language
This is not something in the IPB 5 alpha so far. So I would not expect it in 5.0.0 when it's eventually released. While it does not exist today, that does not mean it won't be considered later, thus Marc's "currently" comment. IPS generally does not talk about its roadmap until it's very close to finished. So I would not expect them to comment about it now or anytime really soon. They're going to be heads down focused on getting 5.0 out the door. The best suggestion for now would be to make a request in the feedback forum.
-
Too many processes - web site offline
Randy Calvert replied to ntrivilino@alice.it's post in a topic in Classic self-hosted technical helpFrom that screenshot, you are not even using 60 processes. So take from that what you will…
-
504 Timeout or weird symbols when uploading a file
There is no way to say what value to use. This depends on your server resources, how PHP is used (CGI, FPM, etc), and what else the server is doing. IPS cannot tell folks how to specifically configure their server. Instead individuals are recommended to know how to manage and troubleshoot their server or use the IPS cloud solution which would not require configuring things like Apache, PHP, mySQL, etc.
-
Titles of clubs on another language
Titles of clubs are (or can be) user generated. As a result, this is not possible. (It would be the same reason why each post made by a user could not be translated automatically.)
-
Nginx Configuration Issue
Glad it worked for you!
-
Nginx Configuration Issue
IPS does not officially support nginx, however there are htaccess to nginx converters out there online. An example is: https://www.getpagespeed.com/apache-to-nginx However as this is not something IPS helps troubleshoot or support. There are several people who have successfully converted the htaccess however based on searching the forums here.
-
How to remove Commerce from my plan?
If you are planning to upgrade to IPB5… there is no longer a concept of a-la-cart modules. All of them will be included. If you are planning to stick with IPB 4, click the contact us link at the bottom of the page and submit a request to the account teams.
-
Steps to move from Windows to Ubuntu
I’m glad you got it squared away! 🙂
-
Steps to move from Windows to Ubuntu
You should be able to login to the ACP without a htaccess by going to just domain.com/admin. Once logged into the ACP, you can download/upload it. (Just make sure after it’s uploaded, it’s named “.htaccess” where the period is at the start of the file name.
-
French or English Selection for members
When an admin sets a default language, that’s the language that will show if someone is not logged in or if the user has not implicitly selected a language. Once a user chooses a language, as long as they’re logged in, that language choice will be honored. (The same is true for themes as well.)
-
"Stop email notifications"
There is no sort of admin notification if someone opts out of notifications.
-
Cloudflare Turnstile for CAPTCHA
No, it has not.
-
Just enabled redis - it appears as a "Fix-This"
Yup. Working as expected. All is good. 🙂
-
Copy and paste not working in topic editor
Have them try a different device (tablet, etc). Does it still happen for them? Are they using a very old version of iOS (non supported version)? It could be a VPN or other software running on the device as well.
-
sign-in with Google - can we add "Google One Tap"?
I would suggest looking at:
-
sign-in with Google - can we add "Google One Tap"?
Here’s a stupid question… why not simply make a modal popup yourself and link it into the existing signup with Google workflow? This would not show the user’s existing Google accounts but would be that “in your face” prompt. Otherwise you might need to engage a 3rd party resource developer to create a new login method for you.
-
sign-in with Google - can we add "Google One Tap"?
The API creates a local account instead tieing to Google. So that won’t work.
-
sign-in with Google - can we add "Google One Tap"?
There is no pre set option to do this, but you could certainly look at editing your theme to add the code. You’ll most likely need to wrap it in template logic to only show it to guests.