Jump to content

teraßyte

Clients
  • Joined

  • Last visited

Everything posted by teraßyte

  1. 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.
  2. There is no option like that. You'd need a custom application for it.
  3. Yeah, that looks correct.
  4. 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?
  5. 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. 🤷‍♂️
  6. Yes, you need it. Several functions are available only there (approval queue, announcements, deleted content, alerts, etc).
  7. 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:
  8. 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/
  9. 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
  10. 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.
  11. Unless I remember wrongly, @DawPi should have a modification for this. Or maybe something similar. 🤔
  12. I don't think any extensions can be used for the checkout process in v5. I don't remember seeing one at least. 🤔
  13. Here you go if you don't want to wait: https://invisionbyte.net/files/file/282-tb-delete-all-system-logs-button/
  14. 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.
  15. 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.
  16. 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. 🙄
  17. Make sure all your tables are using InnoDB + DYNAMIC row format and utf8mb4 charset. That will help avoid lots of issues during the upgrade.
  18. 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. 🤔
  19. 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.
  20. 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.
  21. 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).
  22. teraßyte replied to Code Name Jessica's post in a topic in Feedback
    I get the same message and don't have any Q&A forums either. There's a bug in the check because it retrieves not only Q&A-type forums but also whether the Enable Solved? setting is enabled for normal Discussion-type forums (which is retained in v5 as Topic Solutions). @Marc Can you add a bug report for this?
  23. I've seen it happen before, and it's related to some missing CSS. Any error in your browser console? Maybe some error related to being unable to load one or more CSS files.
  24. Here's an example: public function formElements() : array { $newFields = array(); # Create fields $newFields['test1'] = new Text( 'test1' ); $newFields['test2'] = new Text( 'test2' ); # Call setPosition for each field $newFields['test1']->setPosition( NULL, 'TAB' ); $newFields['test2']->setPosition( 'test1', 'TAB' ); return $newFields; } You have to call setPosition() for each field to add a new tab, but it's possible.