Reputation Activity
-
teraßyte got a reaction from SeNioR- in Assign an ID to Revisions link on Articles page
The problem is the comma in your CSS rule. See Jim's reply here:
-
teraßyte got a reaction from WebCMS in Assign an ID to Revisions link on Articles page
The problem is the comma in your CSS rule. See Jim's reply here:
-
teraßyte got a reaction from Pescao6 in Error uploading multiple images to gallery
This is a server issue. You need to contact your hosting about it:
ModSecurity: Access denied with code 44 (phase 2).
They must either disable/tweak the ModSecurity rule triggered by the gallery uploads or disable it completely.
-
teraßyte got a reaction from Marc in Error uploading multiple images to gallery
This is a server issue. You need to contact your hosting about it:
ModSecurity: Access denied with code 44 (phase 2).
They must either disable/tweak the ModSecurity rule triggered by the gallery uploads or disable it completely.
-
teraßyte got a reaction from Afrodude in [4.7.18] Class must be declared abstract or implement method 'recount'
I've seen this error in my IDE for a while now but forgot to report it earlier. It is caused by the newly added \IPS\Node\DelayedCount trait.
I see this error even in several classes, even inside Application.php for applications that don't implement the trait. 🤷♂️
When I tell the IDE to fix the issue automatically this function gets added to the file (Application.php in this case):
/** * Count all comments, items, etc * * @return mixed */ protected function recount() { // TODO: Implement recount() method. } I have no comments, items, or anything else that needs recounting in this specific application or others, though.
-
teraßyte got a reaction from SeNioR- in [4.7.18] Class must be declared abstract or implement method 'recount'
I've seen this error in my IDE for a while now but forgot to report it earlier. It is caused by the newly added \IPS\Node\DelayedCount trait.
I see this error even in several classes, even inside Application.php for applications that don't implement the trait. 🤷♂️
When I tell the IDE to fix the issue automatically this function gets added to the file (Application.php in this case):
/** * Count all comments, items, etc * * @return mixed */ protected function recount() { // TODO: Implement recount() method. } I have no comments, items, or anything else that needs recounting in this specific application or others, though.
-
teraßyte got a reaction from SeNioR- in Site Require Member Sign in to Access
You most likely disabled the group setting Can access site? for guests.
Edit the guest group in ACP > Members > MEMBERS > Groups > Guests to re-enable it.
-
teraßyte got a reaction from Cowboy Denny in Site Require Member Sign in to Access
You most likely disabled the group setting Can access site? for guests.
Edit the guest group in ACP > Members > MEMBERS > Groups > Guests to re-enable it.
-
teraßyte got a reaction from Afrodude in Community not available
I'm also noticing some slowness on this site. It took 30+ seconds to open the PM inbox list... 🙄
-
teraßyte got a reaction from asigno in Why am I getting a Fix This message for Redis?
Ignore it, it's not an error you have to fix. IPS simply needs to change that button's text.
I believe they already have an open bug report about it.
-
teraßyte reacted to Jim M in Easy Way To Turn Posting Off?
ACP -> System -> General Configuration -> disable "Site Online". If a group's setting enables them to has access to your community offline, they will still be able to access and individuals that do not will be not allowed in and shown the message there.
-
teraßyte got a reaction from Andy C in Easy Way To Turn Posting Off?
Rather than turning off posting, I would put the whole site offline while the conversion is ongoing. 🙄
-
teraßyte reacted to Randy Calvert in Open bug bounty
If that is the best they got…. Sheesh.
Absolutely not worth engaging over.
-
teraßyte got a reaction from SeNioR- in The MemberFilter core extension can actually be used in 4 areas instead of 2
I just found randomly that the MemberFilter extension can also be used for Automatic Moderation & Password Reset, but there is no mention of it anywhere in the documentation, it only states Bulk Mail & Group Promotions.
Even the extension generated by the ACP doesn't list all 4 values but only 2:
/** * Determine if the filter is available in a given area * * @param string $area Area to check * @return bool */ public function availableIn( $area ): bool { return \in_array( $area, array( 'bulkmail', 'group_promotions' ) ); }
It should list all 4 values:
return \in_array( $area, array( 'automatic_moderation', 'bulkmail', 'group_promotions', 'passwordreset' ) );
It all started when I found the automatic_moderation check by chance, I got curious and found also the passwordreset value after searching all files.
Both the extension example file in the package and the documentation should be updated to include all 4 values.
-
teraßyte got a reaction from Afrodude in The MemberFilter core extension can actually be used in 4 areas instead of 2
I just found randomly that the MemberFilter extension can also be used for Automatic Moderation & Password Reset, but there is no mention of it anywhere in the documentation, it only states Bulk Mail & Group Promotions.
Even the extension generated by the ACP doesn't list all 4 values but only 2:
/** * Determine if the filter is available in a given area * * @param string $area Area to check * @return bool */ public function availableIn( $area ): bool { return \in_array( $area, array( 'bulkmail', 'group_promotions' ) ); }
It should list all 4 values:
return \in_array( $area, array( 'automatic_moderation', 'bulkmail', 'group_promotions', 'passwordreset' ) );
It all started when I found the automatic_moderation check by chance, I got curious and found also the passwordreset value after searching all files.
Both the extension example file in the package and the documentation should be updated to include all 4 values.
-
teraßyte got a reaction from Marc in Cookie Consent Redirects User to Home Page
I believe the fix was in a template. Are you using a custom theme perhaps? If you are, you have to manually update the template with the fix if it's edited.
-
teraßyte got a reaction from Marius in Form submission
What do you want to do exactly?
I've made forms in Pages before for some of my clients, but it depends on what you want to do with it. Also, you need to know some PHP and understand how the framework works to build it to use the helper classes/fields. Here's a simple block form I recently made:
The developer guide on how to build forms is available here:
-
teraßyte got a reaction from SeNioR- in How do I turn off ability to add files for Download ?
A bit confused. Do you want to block those groups from adding new files or do you want to disable the downloads app for those groups?
If you want to block them from adding new files, deselect the UPLOAD FILES checkbox when editing a category permissions If you want to disable the app completely go to ACP > System > SITE FEATURES > Applications > Downloads and follow these steps: Click on the lock icon Put the app offline In the new settings that appear select which groups can still use the application Eventually add a custom message for those who can't access it (like purchasing a subscription, etc) Click the save button -
teraßyte got a reaction from Pescao6 in How do I turn off ability to add files for Download ?
A bit confused. Do you want to block those groups from adding new files or do you want to disable the downloads app for those groups?
If you want to block them from adding new files, deselect the UPLOAD FILES checkbox when editing a category permissions If you want to disable the app completely go to ACP > System > SITE FEATURES > Applications > Downloads and follow these steps: Click on the lock icon Put the app offline In the new settings that appear select which groups can still use the application Eventually add a custom message for those who can't access it (like purchasing a subscription, etc) Click the save button -
teraßyte got a reaction from Mara Wolf in How do I turn off ability to add files for Download ?
A bit confused. Do you want to block those groups from adding new files or do you want to disable the downloads app for those groups?
If you want to block them from adding new files, deselect the UPLOAD FILES checkbox when editing a category permissions If you want to disable the app completely go to ACP > System > SITE FEATURES > Applications > Downloads and follow these steps: Click on the lock icon Put the app offline In the new settings that appear select which groups can still use the application Eventually add a custom message for those who can't access it (like purchasing a subscription, etc) Click the save button -
-
teraßyte reacted to aia in Leaderboard and Widget for "Solutions"
Currently, we have leaderboards based on reactions, but a leaderboard based on the number of "Solutions" will encourage people to write more useful answers. Therefore, a Leaderboard and Widget (similar to "Popular Contributors," but based on solved topics) would be very useful.
-
teraßyte got a reaction from SeNioR- in [BUG 4.7.18] Number of solutions not shown in some forums
Using your post as an example, it shows you have 925 solutions.
I see no point in hiding this statistics in a forum where posts cannot be marked as a solution. You have still posted those solutions, and the link back to the solutions page should always be available regardless. It's part of the user's info, and on forums that rely on that kind of stat to show if a user is trustworthy, not showing it is a "bug". 🤷♂️
We can argue this should be in the feedback forum, but I personally think it's a bug. Feel free to move it in case. 😋
-
teraßyte reacted to Marc in [BUG 4.7.18] Number of solutions not shown in some forums
Does this mean there is ironically a solution?
-
teraßyte got a reaction from SeNioR- in [BUG 4.7.8] Images rotated differently (EXIF data) depending on their upload area (and wrongly, too)
Here are the steps to reproduce:
Create a new file in the Downloads app (in a category that allows screenshots). Upload any random file in the first step (it doesn't matter). Upload the image from the ZIP file attached to this post as a screenshot. Enter a random title (it doesn't matter). Re-upload the image from step #3, but this time as an attachment in the Description editor. Submit the file.
Once the file is submitted, compare the screenshot to the attachment in the description, and you'll see the images are rotated differently (and rotated wrongly in both cases, too).
test_image_rotation_bug.zip
P.S.: The test above was done with both GD and ImageMagick. Same result in both cases.