Jump to content

teraßyte

Clients
  • Posts

    33,811
  • Joined

  • Last visited

  • Days Won

    55

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by teraßyte

  1. Just creating a simple application is enough. I can reproduce it even on v5. I create a new application: Name: Hello World Directory: hello Here's what I see in my IDE, that error is on line 19 (red arrow):
  2. 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.
  3. IPS doesn't offer support upgrading from legacy versions, so the link posted by Nathan with the steps you need to follow to perform a manual upgrade is the only solution. If you wish to proceed with the manual upgrade but encounter errors, try posting them here and we can help further. If you prefer having someone else do the upgrade for you, your only option would be to hire a 3rd party Provider with the Upgrade Services badge.
  4. 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.
  5. 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.
  6. It seems the post I made earlier, right before this one, is throwing an error. 🤨 [[Template forums/front/topics/postContainer is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]
  7. I'm also noticing some slowness on this site. It took 30+ seconds to open the PM inbox list... 🙄
  8. Rather than turning off posting, I would put the whole site offline while the conversion is ongoing. 🙄
  9. If you don't want to use the Downloads application to provide the file, it is also possible to upload it as an attachment in the editor available in the Client Area Settings TAB of the product form (Client Area Content).
  10. 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.
  11. Are you using the default theme or a custom one?
  12. 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.
  13. While editing a forum, calendar, gallery category, etc, there is an option to copy a setting value to other nodes of the same type. Would it be possible to add something similar for the groups? Since groups are active records rather than nodes, the option is not available automatically.
  14. 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:
  15. 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
  16. Group Promotion rules are checked when a member's data is saved to the database for whatever reason (their last visit date changes, they make a post, they update their signature, etc). Unless they login and/or do some kind of action that updates their account (even the last visit date change), the rules are not checked. If you don't want to wait, do a mass search for members with at least 1 post in the New Member group and manually move them to the Regular Member group.
  17. I think you mean dynamic row format. 😋
  18. Do you have ads on the page? I've seen it happen a few times because of them. 🤔
  19. 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.
  20. No, it's not possible by default. If you make a multiple choice poll members can choose all options. However, I have a modification that allows you to limit the votes to a specific number which covers #1: https://invisionbyte.net/store/product/18-tb-limit-multiple-choice-votes-in-polls/ I'm not aware of any existing modification for #2.
  21. Nope. It's still an open bug report as far as I know. 🙄
  22. The clearUnconfirmed task is still included in the core application but throws an error when it runs because the hive feature tables don't exist anymore: 2C124/7 There was an issue running this task, please refer to the system log for further information. DELETE FROM `core_hive_subscribers` WHERE subscribe_confirmed=0 AND subscribe_date<=1722521047 IPS\Db\Exception: Table 'dev47.core_hive_subscribers' doesn't exist (1146) #0 /dev47/system/Db/Db.php(1300): IPS\_Db->preparedQuery('/*dev47::root::...', Array, false) #1 /dev47/applications/core/tasks/clearUnconfirmed.php(41): IPS\_Db->delete('core_hive_subsc...', Array) #2 /dev47/system/Task/Task.php(283): IPS\core\tasks\_clearUnconfirmed->execute() #3 /dev47/applications/core/modules/admin/settings/advanced.php(751): IPS\_Task->run() #4 /dev47/system/Dispatcher/Controller.php(107): IPS\core\modules\admin\settings\_advanced->runTask() #5 /dev47/applications/core/modules/admin/settings/advanced.php(38): IPS\Dispatcher\_Controller->execute() #6 /dev47/system/Dispatcher/Dispatcher.php(153): IPS\core\modules\admin\settings\_advanced->execute() #7 /dev47/init.php(940) : eval()'d code(30): IPS\_Dispatcher->run() #8 {main}
  23. After the move, as expected, the solutions count is gone. 😋
×
×
  • Create New...