Jump to content

teraßyte

Clients
  • Posts

    33,821
  • 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. Send me a PM with some more details on what you're trying to do and I can take a look if you want. 🙂
  2. I see you have another Go To Top modification in that list. Based on the name it should do something similar, if not you can give this one a try instead:
  3. Back To Top is most likely the culprit. I've seen plenty of forums going down because it's not compatible with PHP 8. As for the logo, your old theme should still be there. You can just switch back to it. 👍
  4. That would require some kind of modification. Or you could enter both manual option in the same field.
  5. Not exactly a bug, but it's not really needed to keep an empty file around either: \applications\core\setup\upg_107500\upgrade.php The file contains a single empty upgrade step: public function step1() { return TRUE; }
  6. From that screenshot you also seem to have mixed charset values: utf8_unicode_ci and utf8mb4_unicode_ci. All tables should be using utf8mb4_unicode_ci instead.
  7. This is the support topic for this modification:
  8. When you reset/change the main licensed URL the test URL is reset at the same time. Someone from IPS might be able to just reset the test URL for you, but you'll need to wait for them to see this topic.
  9. I don't remember any default option to prune topics with no reply after X days. Are you using some kind of modification perhaps? It could be updated to support also a last viewed date. Or you can have a completely new one made since the software doesn't store a topic's last view date in the first place. You'd also need to account for that in the code.
  10. That's something you should check with your hosting. Every server has its own setup. However, have you already tried running the Requirements Checker? There might be missing PHP extensions causing the error.
  11. I just tried myself and was able to install the plugin with no error. 🙄 Here's my zip structure (seen with 7zip):
  12. Which plugin are you trying to install specifically?
  13. If there are a lot of modifications installed it might be worth upgrading to 4.7.3 with PHP 7.4 in order to have the tool flag any incompatible modifications with PHP 8. Other than that, yeah, it's probably not worth the time.
  14. Is the issue you're talking about different from the topic/query I linked above? Because if the issue is the field having the text string NULL instead of being NULL itself it's not the solution in this case.
  15. @Jim M I restored a full backup from a 3.x version and then upgraded it to 4.7.4. The forum currently has only 1 plugin installed, but the error can still be reproduced after disabling it and testing on the default theme. I also saw this topic and verified with the query posted in the solution but there were 0 results:
  16. Add a product in ACP, uploads a few images for it in the Store tab, chosen a primary image and then save it. Once you go back to edit the product the primary image you chose is not marked as such. All images have an empty radio button instead.
  17. You can do this by uploading the 4.7.3 files manually (as long as you downloaded them before 4.7.4 became available). The auto-upgrade in ACP always uses the latest version available so it would upgrade straight to 4.7.4 right now (soon to be 4.7.5).
  18. Yeah, a few sites I know that were using that application all converted to using Radical Tags instead. As for Minimized Quote, it's now a built-in feature since version 4.5 so you can just uninstall the plugin.
  19. Viglink was removed in version 4.7.4 because the implementation doesn't work anymore: https://invisioncommunity.com/release-notes/
  20. Yes, you can create folders in the Pages app from ACP.
  21. @Daniel F Great! While you're at it can you guys give a good look at this forum and check the other bugs? I've posted several ones (even easy ones like this one) and they were never acknowledged nor fixed. Here's some random ones: https://invisioncommunity.com/forums/topic/468507-bug-470-cannot-setup-extra-fields-in-downloads-to-be-included-in-topics/ https://invisioncommunity.com/forums/topic/468498-bug-470-the-setting-send-diagnostic-data-is-broken/ https://invisioncommunity.com/forums/topic/468464-bug-470-cms-database-setting-field-options-records-per-page-controls-also-comments-per-page/ https://invisioncommunity.com/forums/topic/468123-bug-470-blog-app-has-calendar-code-in-it/ These are just some recent ones.
  22. Steps to reproduce: Visit a member's profile in ACP and click the Ban button in the Warnings & Restrictions box. Setup any ban option you want except for the Move to option so the member remains in the same group. Once you click the Save button this new log shows up in the member's account activity: This happens because of this code below in /applications/core/modules/admin/members/members.php on lines 2867~2871: if ( isset( $values['member_ban_group'] ) ) { $member->logHistory( 'core', 'group', array( 'type' => 'primary', 'by' => 'manual', 'old' => $member->member_group_id, 'new' => $values['member_ban_group'] ) ); $member->member_group_id = $values['member_ban_group']; } The fix is to change the IF check to use this code in order to skip it when the group ID is the same instead: if ( isset( $values['member_ban_group'] ) AND $values['member_ban_group'] != $member->member_group_id )
  23. @beats23 Good idea. I'll add it in the next version. 👍
  24. Not exactly a solution but add a global announcement that shows everywhere about the forced password reset. That should help avoid confusion when your members aren't able to login with their usual account.
  25. Clicking on Browse Categories in the Downloads (Marketplace) area the category icons are always shown as read despite me having several files marked as new/edited in them: https://invisioncommunity.com/files/categories/
×
×
  • Create New...