Jump to content

teraßyte

Clients
  • Posts

    33,392
  • Joined

  • Days Won

    47

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by teraßyte

  1. Yes, IPS added a new parameter to a function. It's a simple change if you know how to do it. If you need help let me know.
  2. Looks like a fix for this bug was included in 4.7.15. Marking as solved.
  3. Looks like a fix for this bug was included in 4.7.15. Marking as solved.
  4. Looks like a fix for this bug was included in 4.7.15. Marking as solved.
  5. Looks like a fix for this bug was included in 4.7.15. Marking as solved.
  6. The extra free months are if you convert your current license (with only some applications) to a classic license (with all applications). If you click the Click here to change under the Change your license to new Invision Community Classic terms title, you'll get a summary of your situation and the free extra months. Clicking that button won't change anything just yet, you have to confirm again on the page that loads, and only after choosing either the month or year renewal option. Be aware that after clicking the button it might take a while to load all your data to calculate the extra free months. (At least it took more than a minute when I did it). There are no issues. I've helped several clients switch from cloud hosting to self-hosting. You can ask IPS to provide you with a backup of your data anytime, purchase the self-hosting (classic) license, and import the backup on your new hosting. 👍
  7. Yes, I've seen several sites (10+) using version 10.11 without any issues.
  8. PHP 8.2 is not supported currently, though. If your site uses it, you should downgrade to PHP 8.1 instead. Otherwise, you might experience issues in some areas.
  9. I read the title as 3.4.6 at first. I've recently done 2 upgrades from 3.4.6 and 3.4.9. 😅 IPS doesn't provide older versions for download, so you can only upgrade directly to 4.7.14. The steps mentioned in the post above are all you need. However, remember that you can't use the automatic upgrade option in ACP in this particular instance because you need to change the PHP version. The only option is to perform a manual upgrade. Here's a link to the guide: https://invisioncommunity.com/4guides/advanced-options/server-management/install-and-upgrade-r259/#manualupgrade
  10. I've seen this problem several times. Making that error message more visible would certainly help. 👀 Maybe a big red error message at the top of the form like other pages do.
  11. Here you go some links 🙂 You need a modification for that. Here's a link: https://www.sosinvision.com.br/index.php?/file/68-user-groups-in-registration-screen-account-settings/ Again, you also need a modification for this: https://www.sosinvision.com.br/index.php?/file/40-profile-field-per-user-group/ Have a look at this guide from IPS. It won't automatically log in members, but they can use the same account. You need another modification for this one, too: https://allastronauts.com/files/file/19-kitchen-sink/
  12. Are you allowing only certain email domains perhaps?
  13. Sorry, I missed that part in your previous reply. If you cleared also the CDN's cache too, then yes, it should work.
  14. No, because you request the image from Cloudflare, and Cloudflare already has it cached for 1 year.
  15. If they're all consistently 1 day behind, it could be a timezone conversion issue. 🤔 Adding 1 day to all UNIX timestamps in the database with a query might solve the issue. but it would be better to find out why it happened first. It could be a bug in the converter. If it's a bug, fixing it and reconverting the events would be the best option.
  16. You could always create a custom script to scan all posts and update external images using HTTP to use HTTPS. In any case there's no tool to "fix" this problem in Invision Community.
  17. No, there is no tool for a delayed move in Invision Community. You'd need a custom modification to do that.
  18. The content field for custom databases in Pages is a MEDIUMTEXT column, so it can hold ~16,7 million characters. The character count includes also the HTML tags you can't see while using the editor: bold format, italic, font size, colors, etc. I believe older versions used TEXT until a certain point, though. If that is your case, a TEXT column can hold only 65k characters.
  19. Are you seeing it in a Commerce support request notification perhaps? In the support module, you can setup a custom email address for each department.
  20. Instead of adding a CSS class, they could change the JS to look for the [data-forumid] attribute instead. 🤔 I don't really like relying on specific CSS classes, which might get moved (or changed) in a custom theme. Data attributes won't get altered instead.
  21. The Nexus support module is installed hidden by default, and there's a code check to add it to the ACP menu on the fly only if it's set as visible. Basically, fresh installations won't even show it since it's been deprecated. I don't remember in which version the change was made, though. Here's the code I'm talking about in \nexus\Application.php: public function acpMenu() { $menu = parent::acpMenu(); if( $m = \IPS\Application\Module::get( 'nexus', 'support', 'admin' ) AND $m->visible ) { $menu['support'] = array( ... ); } return $menu; }
×
×
  • Create New...