Jump to content

teraßyte

Clients
  • Posts

    33,811
  • Joined

  • Last visited

  • Days Won

    55

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by teraßyte

  1. ACP > System > SETTINGS > Login & Registration > Registration TAB > Allowed email domains for registration
  2. Oh, I see the problem now. I was testing with the widget in the sidebar area, but the error is only visible when using the top/bottom areas. This is actually an IPS bug because they aren't checking the proper variable in the widget's template. You can edit the block/widget template directly and add the fix I mentioned in the bug report:
  3. This is the code handling the topics hover preview for forum view in applications/forums/dev/html/front/forums/topicRow.phtml on line 115: {{if $row->tableHoverUrl and $row->canView()}} data-ipsHover data-ipsHover-target='{$row->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5'{{endif}} And this instead is the code for the Topic Feed widget template in applications/forums/dev/html/front/global/row.phtml on line 45: {{if $topic->canView()}}data-ipsHover data-ipsHover-target='{$topic->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5' {{endif}} The widget is missing the $topic->tableHoverUrl part of the check and should be updated to: {{if $topic->tableHoverUrl and $topic->canView()}}data-ipsHover data-ipsHover-target='{$topic->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5' {{endif}}
  4. @Afrodude Sorry, not sure what you're talking about. Got an example link or screenshot? 🤨
  5. 5 years later, and everything is still the same... 🙄 👀
  6. Are you using a cronjob to run your tasks? If yes, have you already checked it is also running with PHP 8 and not an older PHP version?
  7. Hmm, I'll have a look and see if I can add this into the plugin I released recently related to banned members. It seems like a perfect fit for it: EDIT: My plugin can also change the member's group but it would be nice to have the option to still hide them without changing their group if needed.
  8. You mentioned plugins. If you disable all plugins does the error go away? If yes, you need to contact the developer of the plugin causing the issue.
  9. Yeah, those times can be a bit confusing. You need to look at the Published date, the Updated date was most likely Martin updating the file's description. The two things are separate.
  10. @haqzore The new version is still pending approval from IPS.
  11. I agree that it should be made a bit more obvious. It is rather hidden right now. 😅
  12. Go to the Manage Purchases page on your site. Click the Manage button for the package you want to upgrade. Below the Product Information box you'll see an Upgrade link. Click Upgrade and a page to select the product to upgrade to will load.
  13. As long as you provide the correct details in your client area (FTP + ACP account) someone from IPS will be able to take a look at your site and check what exactly is going on. Today is a Sunday though, so they might not get to it until tomorrow at least. If you can't/don't want to wait you can hire a developer from the Providers list: https://invisioncommunity.com/third-party/providers/ I'm also on that list if you want, just send me a PM.
  14. Sounds like they're purchasing product 2 from scratch rather than upgrading.
  15. You could leave a topic redirect when moving a topic to another forum, but it wouldn't update info like number of posts, last reply, etc. which I assume is what you'd like to have? You'd indeed need some custom modification for that.
  16. Correct. What I said is not possible by default in Invision Community right now. I just clarified what you actually need to solve your situation because simply adding support for secondary groups wouldn't work. Either IPS adds it in a future version (this topic is in the feature suggestions forum) or someone makes a modification for it (I plan on taking a look at it when I have some time).
  17. Just tested locally and it works for me on version 4.7.5 using simple word as tag. Which version are you using? I believe this was a bug in an older version. You can see it working on this same site when searching for the known issue tag used in this forum: https://invisioncommunity.com/tags/known issue/
  18. No, the server where I encountered the issue wasn't using Cloudflare. It could be that some kind of recent server update added new mod security rules, or re-enabled some disabled ones. I've seen it happen a few times.
  19. For backups I usually generate a cPanel Full backup and download it. And sometimes I make my own manual database/files backup from SSH. However, if this is about moving the forum to a different URL/server, you can check this guide instead:
  20. Have you checked your server's error logs to see if there's anything here? Usually a blank page or a 500 error page should generate some kind of error (as long as logging is enabled). Once you find the error it will tell you what exactly is wrong.
  21. MariaDB 10.2.2+ should be using such format by default, but maybe you have an old configuration file. Here's a link: https://mariadb.com/kb/en/innodb-dynamic-row-format/
  22. I had the same issue recently. Adding a link worked just fine but editing it caused an error. It turned out to be Mod Security, there was a rule trigger it when a URL parameter contained https://. Once that rule was disabled the error disappeared. You'll need to ask your hosting about it.
  23. They should really include the ROW_FORMAT=DYNAMIC in queries by default for such situations. For now as a fix you'd need to change your Wamp server MySQL configuration to create new tables using DYNAMIC by default. P.S.: You posted this in topic Marketplace Support. 😋
  24. From what you've written your problem are not secondary groups. Rather in your situation you'd need an option to NOT show the menu item if the user has certain groups. With such option you could setup the menu items in this way: Show BUY PRODUCT#1 LINK if the user has the MEMBER group and does NOT have the group PRODUCT#1. Show PRODUCT#1 PURCHASED LINK if the user has the group PRODUCT#1. It shouldn't be that hard to make a modification for it, but for now I'll add it to my todo list since I'm a bit busy with other modifications. 🤔
  25. The default value is 0 because I need that field to be disabled by default. 🙂 The real issue is the error string being worded wrong. The PHP code check is >= 2 but the error only mentions > 2.
×
×
  • Create New...