Everything posted by teraßyte
-
Can't renew expired membership product
Okay, then my modification won't help. It was made to work only with subscriptions (original client's request). 🤷♂️
-
Can't renew expired membership product
If a member cancels the renewal, when it expires, the renewal data (cost/period) is not preset and the user can't renew by themselves anymore. Just to double-check, is it a product or a subscription? If it's a subscription, I have a modification for v4: https://invisionbyte.net/files/file/303-tb-always-allow-subscription-renewals/ There's no v5 version yet, but I have plans to upgrade it. Just waiting for IPS to add some hook points in the beta version.
-
Database error stopping updrade to 4.7.19
Is your database using UTF8 or UTF8MB4 as the charset? It's possible you're still using UTF8 and with MySQL using the new UTF8MB3 alias those queries popped up.
-
How to change registration member group
You can either rename the group in ACP and move all the members in it to another group newly created (with the old name), or you can edit this line in the conf_global.php file on your server: 'member_group' => 3, Replace the default member group ID 3 with the new group you want to use.
-
NO_FORUM error when trying to create topic via GraphQL.
Try passing forumID as an integer instead of a string. 🤔
-
Here's Beta 6
The Support area has been removed from Commerce in v5, so that file won't be overwritten no matter what as it's not present anymore. The code should avoid loading extensions not present anymore in the extensions.json file. 🤔
-
Problem updating prices in store via ACP
teraßyte replied to Westfield Sports Car Club's post in a topic in Classic self-hosted technical helpMaybe the admin who did it didn't select the option to update the existing customers. You can follow these steps to try updating the 35/year users again: Edit the product and set the year price back to 35 Do NOT apply the changes to existing customers Re-edit the product and raise the price to 53 This time apply the change to existing customers It should work. 🤔
-
Problem updating prices in store via ACP
teraßyte replied to Westfield Sports Car Club's post in a topic in Classic self-hosted technical helpBased on your screenshots, the code is working as intended. Your 3rd screenshot mentions that only customers paying 52.99/year will be updated to pay 53.00/year. In your last screenshot, the client is paying 35.00/year so it's correct that the record wasn't updated.
-
LimitInternalRecursion
Which version are you using? That's a really old .htaccess file. If you use the latest 4.7.19 version, re-download the latest .htaccess file from the ACP.
-
Five Invision Community 5 features your members will love
For developers maybe. It doesn't make much sense for normal users who used to have it as a top-level button in v4. I've already had several clients ask me where to find it after they upgraded to the beta version. 🙄
-
Developer Mode problem.
Based on that screenshot, it looks like the browser is unable to load the CSS files. Do you have any errors in your browser's console?
-
Here's Beta 6
Go to /admin/upgrade/ and follow the instructions.
-
Developer Mode problem.
Did you delete the default theme with ID 1 at some point? IN_DEV looks for that theme ID unless you setup a DEFAULT_THEME_ID constant with a different theme ID value.
-
Going to Move Some Static Html Pages Under IPB Pages. What is the best way to do this?
Oh, somehow I missed the previous reply. You'd need to setup a redirect for the old forum folder and redirect all URLs starting with https://www.site.com/forum/* to https://www.site.com/* Either use a .htaccess rule or leave an index.php file inside the forum folder with some redirect code.
-
Log errors related to permissions?
Looking at the Cleantalk error screenshot your new server doesn't have the curl_exec() function enabled. But yeah, as Jim said, it's not an error related to Invision Community.
-
How To Share A Forum
You can copy the forum link from the forum index or from the breadcrumb while viewing a topic in it. A random example: https://forum.garysgaragemahal.com/forum/21-new-members-start-here/ After I pasted it in another tab it got converted to: https://www.garysgaragemahal.com/?invisionURL=XXXX === Other than this, you'd need a quick modification to add a copy forum URL button somewhere. (It can also be done with a template edit, but the template would stop auto-updating in the future.)
-
Elasticsearch errors in System Logs / on fronted, default setup doesn't work?!
No, it does not. While the error you posted happens with both versions, there is still a difference in the end. You may not notice it immediately, but some things are most likely not working as they should. For example, at some point, many people reported issues upgrading to a newer version, and they were all using PHP 8.2+. Switching back to PHP 8.1 allowed them to upgrade without issues. You might see it working, but it's not fully working at 100%.
-
Elasticsearch errors in System Logs / on fronted, default setup doesn't work?!
PHP 8.3 is not supported, so you should really revert to PHP 8.1 anyway.
-
Error EX0
I usually see this error when the hosting disables the phpinfo() function. It's rare, but I've seen it a few times. 👀 IPS should implement a check and display a better error on the page.
-
PHP Upgrade
Also, don't go higher than PHP 8.1.x. PHP versions 8.2.0+ are NOT supported by v4.
-
App won't update
As a guest, I don't see any 4.2.2 link on that page. Maybe you see an extra link if you're logged in? 🙄
-
App won't update
Unless I'm missing something, the latest Tapatalk version for Invision Community 4.2+ is v2.1.1, so the version you see in ACP is correct: https://www.tapatalk.com/download_IPBoard Where exactly did you get this 4.2.2 version? 🤔
-
Beta 5 is alive!
[...] Nvm. I should wake up before replying. 😋
-
[4.7.18] Class must be declared abstract or implement method 'recount'
Good to know. I've removed that mixin line from the Model class for now. 🙂
-
MySQL Server Details - Create Database
You can follow your hosting's guide: https://www.siteground.com/tutorials/php-mysql/create-user-database/ If you have issues following it you can contact their support for any questions. Or, as Marc mentioned, if you're still unsure how to proceed, it might be best to hire someone to help you manage the site.