Everything posted by teraßyte
-
Post needs approval, but I can't find it
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.
-
Is there an option to clean up the database through cron jobs?
There is no option like that. You'd need a custom application for it.
-
Post needs approval, but I can't find it
Yeah, that looks correct.
-
Post needs approval, but I can't find it
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?
-
Post needs approval, but I can't find it
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. 🤷♂️
-
Post needs approval, but I can't find it
Yes, you need it. Several functions are available only there (approval queue, announcements, deleted content, alerts, etc).
-
Post needs approval, but I can't find it
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:
-
Sharing options
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/
-
[[Template core/front/global/mobileFooterBar is throwing an error. This theme may be out of date.
teraßyte replied to AintNobody's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionThat'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
-
Cron - Perfect Stop
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.
-
Req. Developer to Build a Key Redemption System for IPS Marketplace
Unless I remember wrongly, @DawPi should have a modification for this. Or maybe something similar. 🤔
-
v5 and the lack of physical products
I don't think any extensions can be used for the checkout process in v5. I don't remember seeing one at least. 🤔
-
Log files growing at a massive rate...
Here you go if you don't want to wait: https://invisionbyte.net/files/file/282-tb-delete-all-system-logs-button/
-
Problem with Email valitation
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.
-
Alert_cant_dismiss
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.
-
Self-managed Server MySQL event scheduler waiting on empty queue since server restarted 10 days ago
Invision Community doesn't use the event scheduler.
-
Upgrade from v3 to v4 : Error 1146 : Table "seo_meta" doesn't exist
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. 🙄
-
Upgrade from v3 to v4 : Error 1146 : Table "seo_meta" doesn't exist
Make sure all your tables are using InnoDB + DYNAMIC row format and utf8mb4 charset. That will help avoid lots of issues during the upgrade.
-
Upgrade from v3 to v4 : Error 1146 : Table "seo_meta" doesn't exist
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. 🤔
-
How to handle empty (null-value) members_pass_salt fields
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.
-
Custom 404 page
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.
-
Downloads homepage has too little info and too much wasted space
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).
-
Q&A Mode?
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?
-
Gallery Uploads Issue
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.
-
$form->addHeader on a UINode extension?
teraßyte replied to Adriano Faria's post in a topic in Invision Community 5: Beta Testing's Beta DiscussionHere'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.