Jump to content

teraßyte

Clients
  • Joined

Everything posted by teraßyte

  1. Known bug. Matt already mentioned they'll release a new version soon with a fix for profile photos. 👍
  2. teraßyte replied to hdboc's post in a topic in General Questions
    As further clarification, PHP 8.0 and 8.1 are the only versions Invision Community 4.7.19 supports. PHP 8.2+ will break things and is only supported with the new 5.0.0 version (currently in beta).
  3. Sounds similar to this: According to the release notes, it was fixed in 4.7.8: Stripe had some changes in later versions after that, so maybe it's a regression. 👀
  4. You need to add text to your forum's URL. For example, if your site URL is: https://www.domain.com/forums/ Type this URL in your browser's address bar: https://www.domain.com/forums/modcp/approval-queue/ If it is: https://www.domain.com/ then type: https://www.domain.com/modcp/approval-queue/ Etc.
  5. There is no option like that. You'd need a custom application for it.
  6. Yeah, that looks correct.
  7. The moderator is unrestricted, so the permissions are not the problem. I've already mentioned in my previous reply about checking if the module is disabled. P.S.: Just to double-check, the account in your screenshot (Cassel) is in either the Administrators or Moderators group. Correct?
  8. You're confusing things: Administrators can do things in ACP. Moderators can do things on the front end (and use the ModCP if they have access to it) Based on your screenshots above you setup the Administrator group as a moderator (for the front end), but the ModeratorCP is not showing up for some reason. Unfortunately, it's impossible to tell what the issue is without more information. 🤷‍♂️
  9. Yes, you need it. Several functions are available only there (approval queue, announcements, deleted content, alerts, etc).
  10. The ModeratorCP entry should be right above the AdminCP one. 🤨 Maybe you have the Moderator CP module disabled inside the System (core) application? That's the only thing I can think of that would hide the link despite your permissions being set correctly:
  11. Yes. It's indeed possible to add new options with applications. For example, I have a free modification available that adds a QR Code option: https://invisionbyte.net/files/file/283-tb-qr-code-share-service/
  12. That's because of how IDM (Internet Download Manager) works. You most likely already have other 4 files in the Downloads directory so the app renames the file progressively to avoid overwriting existing ones: Invision_Community.zip Invision_Community_1.zip Invision_Community_2.zip Invision_Community_3.zip
  13. How did you setup the cronjob? That error is only returned if it detects you aren't running the script from the command line: /* Check this is running at the command line */ if ( !isset( $_SERVER['argv'] ) ) { echo "Not at command line\n"; exit; } If you are sure the cronjob is setup correctly, for whatever reason the problem is that the server is not passing the argv value. That would still be a server configuration issue, though. Not something IPS can fix.
  14. Unless I remember wrongly, @DawPi should have a modification for this. Or maybe something similar. 🤔
  15. I don't think any extensions can be used for the checkout process in v5. I don't remember seeing one at least. 🤔
  16. Here you go if you don't want to wait: https://invisionbyte.net/files/file/282-tb-delete-all-system-logs-button/
  17. The URL to validate the account has been changed, if you edited the template (even adding some simple text, it didn't auto-update correctly with the upgrade and thus returns that error. Compare your edited email template to the default one to find out what changed.
  18. You could also try deleting the alert from the moderator CP. As long as the alert is removed the users won't see it. The "respond" option shouldn't apply anymore if the account has been deleted, though. That sounds like a bug.
  19. I usually update from 3.x to 4.7.3 using PHP 7.4, and after that to the latest version (4.7.19 now) using PHP 8.0/8.1. That's an option only if you have the 4.7.3 files, though. 🙄
  20. Make sure all your tables are using InnoDB + DYNAMIC row format and utf8mb4 charset. That will help avoid lots of issues during the upgrade.
  21. It must be something related to some old modification you installed at some point. I don't recall seeing that error in all the 3.x => 4.x upgrades I've done. 🤔
  22. What is the issue exactly? Are you getting some errors because of the NULL value? If I remember correctly, the NULL value indicates that the member logged in through some other method (Facebook, Google, Microsoft, Twitter, etc) rather than a local email/password account.
  23. If you are using v4, it's possible to directly edit the core > front > global > error template and add your custom HTML. If you are using the new v5 version (still in beta) it requires making an application because editing the default templates directly is not possible anymore.
  24. I find the downloads homepage has too little info on it compared to its v4 version: Featured box: The button to directly download the file without opening its page is no longer included. I can see why it was removed, though. However, only the number of downloads is shown. Nothing for comments, reviews, purchases, or rating (well, I don't really care about this one 😹). What's New box: Lots of empty white space below the image/title since only the uploader name and date are shown. The image being much bigger than before only further increases the wasted space. I can only see "3 and a half" files compared to "5 and a half" v4 provided a lot more info that's missing: downloads purchases comments (it seems the template includes code for this, but the count is hidden and there's a broken pluralization string) rating (it seems the template includes code for this, but the element is hidden with CSS) Highest Rated & Most Downloaded boxes : Maybe you could also include the number of comments/reviews when there are some? While I can change some things through CSS (image size and rating?) I can't add what's not there since we can't edit templates directly anymore and there are no hook points. 😕 === P.S.: I tested the page on both 1920x1080 and 2560x1440 resolutions. So it's not like the data is hidden because there is no space (for example: phone).