Jump to content

teraßyte

Clients
  • Posts

    33,395
  • 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. Are yo using a cronjob to run tasks? If yes, double-check you're running it with PHP 8 and not an older 7.x version.
  2. You can use the Converter application to merge 2 Invision Community sites: https://invisioncommunity.com/services/convert/ It will merge everything though, not just select members and their topics. A workaround would be to make a copy of the site you want to merge, delete all the members/content you don't want to port over, and then do the merge with only the data left.
  3. teraßyte

    Suggestions

    I was thinking of an interface similar to the one in ACP with the same option, but simply limited to our files. So yeah, ideally we'd be able to also setup start/end date, number of uses (even per-person), etc.
  4. teraßyte

    Suggestions

    Or maybe an option to create our own coupons that work only for our files. 😋
  5. Is this happening also for other posts? And if you try to quote again the original post does it work? The image url in the original (working) post is: https://audiophilestyle.com/uploads/monthly_2022_12/112211978_Screenshot2022-12-10at9_08_46PM.thumb.png.23f5ccfef0ab0ecca75c04acf0aef636.png The quote instead has a SPAN element (instead of IMG) with a broken image url that contains a strange "cdn-cgi" part: <span>/cdn-cgi/mirage/00ce431b9027971e05da91937cb72d5b93aaf04ec1a19da6ad7098b83f26925d/1280/https://audiophilestyle.com/uploads/monthly_2022_12/112211978_Screenshot2022-12-10at9_08_46PM.thumb.png.23f5ccfef0ab0ecca75c04acf0aef636.png</span> Are you using a CDN that caches page and alters the forum output perhaps?
  6. ACP > Community > FORUMS > Settings > Forum Settings TAB > Topic Summary Settings There are 4 settings in that area where you can change how that summary in the sidebar is generated. By default it shows only after the topic reaches X pages, but there is a checkbox to make it always show which I believe is what you want. Here's a link to the guide:
  7. The upgrade process shouldn't have any step that asks you to move the uploaded files. What instructions did you follow and where did you find them exactly?
  8. Then you'll indeed need to wait for IPS support to reply since they don't provide FTP access. 🙂
  9. In case you have recently upgraded to PHP 8 double-check that your cronjob is also updated and using the correct PHP version. Before it wasn't an issue but in the last 4.7.5 update IPS made some changes to the code and some tasks won't run anymore with PHP 7.x cronjobs.
  10. You'll need to contact your hosting about your FTP details then. Or are you hosted on IPS's Cloud?
  11. By "old items" Jim meant only the posts made after the last upgrade and before you applied the patch that solved the issue. Word expansion is executed only when the post is submitted, so only the new (or edited) posts in that short amount of time were affected. That's why it was mentioned that old posts are not affected by the patch. You can manually edit the affected posts (by removing and re-adding the wrongly expanded words) so word expansion is re-executed on edit.
  12. Looks like your server sometimes is not parsing properly the PHP code/files. You should contact your hosting about it.
  13. ACP > System > SETTINGS > Login & Registration > Registration TAB > Allowed email domains for registration
  14. 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:
  15. 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}}
  16. @Afrodude Sorry, not sure what you're talking about. Got an example link or screenshot? 🤨
  17. 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?
  18. 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.
  19. 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.
  20. 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.
  21. @haqzore The new version is still pending approval from IPS.
  22. I agree that it should be made a bit more obvious. It is rather hidden right now. 😅
×
×
  • Create New...