Jump to content

Daniel F

Invision Community Team
  • Joined

Everything posted by Daniel F

  1. Featured Content in IC5 is almost the same as our picks in IPS4! If you want to allow your members to use it, you can create a new member group, make it a moderator group and allow it only to feature and unfeature content.
  2. You could create a custom block : ACP => Pages => Blocks Chose the Forum Statistics Block and then customize the template <h3 class='ipsWidget__header'>{lang="block_forumStatistics"}</h3> <div class="ipsWidget__content"> <ul class='ipsList ipsList--stats ipsList--stacked ipsList--border ipsList--fill'> <li> <strong class='ipsList__label'>{lang="total_topics"}</strong> <span class='ipsList__value'>{number="$stats['total_topics']" }</span> </li> <li> <strong class='ipsList__label'>{lang="total_posts"}</strong> <span class='ipsList__value'>{number="$stats['total_posts']" }</span> </li> </ul> </div> My only change was the removal of "format="short"" Easy Peasy, isn't it:)
  3. Daniel F posted a post in a topic in Technical Problems
    The login credentials on file are not working. {!#[1:Имя пользователя или пароль][2:Email адрес или пароль][3:Имя пользователя, email адрес или пароль]} неверны. Пожалуйста, попробуйте ещё раз (убедитесь, что caps lock выключен).
  4. Yes:) @Stuart Silvester has submitted a fix for this today which should be included in our next release.
  5. It was fixed and should be available in our next release.
  6. From the create menu probably?
  7. onCreateOrEdit works here too \IPS\downloads\File::processAfterNewVersion $this->ui( 'formPostSave', array( $values ) ); /* Fire event for listeners */ Event::fire( 'onCreateOrEdit', $this, array( $values ) ); Webhook::fire( 'downloads_new_version', array( $this ) );
  8. This error usually means that there's an issue with a 3rd party applications template hook. Do you have any 3rd party applications changing anything with the recent profile visitors block? If yes, try to disable them
  9. You could use your htaccess file if you're self hosted, or use a 3rd party application like this one for IC5
  10. Daniel F posted a post in a topic in General Questions
    Set the default application to define the application Set the module which you want as landing page as the default one
  11. There's more than that. Under some circumstances the data can also be stored in the core_achievements_log DB table resulting in broken ACP point history pages and achievement rebuilds Error: Call to undefined method IPS\core\Messenger\Message::reacted() (0) #0 /var/www/vhosts/xxx/applications/core/extensions/core/MemberACPProfileBlocks/Points.php(95): IPS\core\extensions\core\AchievementAction\Reaction->logRow() #1 /var/www/vhosts/xxx/system/Helpers/Table/Db.php(473): IPS\core\extensions\core\MemberACPProfileBlocks\Points->IPS\core\extensions\core\MemberACPProfileBlocks\{closure}() #2 /var/www/vhosts/xxx/system/Helpers/Table/Table.php(531): IPS\Helpers\Table\Db->getRows() #3 /var/www/vhosts/xxx/static/templates/core_admin_members.php(2522): IPS\Helpers\Table\Table->__toString() #4 /var/www/vhosts/xxx/system/Theme/SandboxedTemplate.php(68): IPS\Theme\class_core_admin_members->pointsLog() #5 /var/www/vhosts/xxx/applications/core/extensions/core/MemberACPProfileBlocks/Points.php(134): IPS\Theme\SandboxedTemplate->__call() #6 /var/www/vhosts/xxx/applications/core/modules/admin/members/members.php(1406): IPS\core\extensions\core\MemberACPProfileBlocks\Points->edit() #7 /var/www/vhosts/xxx/system/Dispatcher/Controller.php(128): IPS\core\modules\admin\members\members->editBlock() #8 /var/www/vhosts/xxx/system/Dispatcher/Dispatcher.php(169): IPS\Dispatcher\Controller->execute() #9 /var/www/vhosts/xxx/admin/index.php(15): IPS\Dispatcher->run() #10 {main}
  12. Were there any upgrade issues in the past? Have you restored recently a DB backup of your community?
  13. Because probably only he such a notification:) That said, we've run into another ticket yesterday where such an error appeared ( reactions for reported content comments and reactions for PMs ) so I've spent some time improving our code base to prevent that such errors break "everything".
  14. What was the issue?
  15. Yeah, your vkid 3rd party login handler isn't compatible with the current version.
  16. Do you see any errors in your system log / server log? From my last days experience it's caused by old v4 applications which have left some deprecated extensions on your filesystem.
  17. Daniel F posted a post in a topic in Technical Problems
    You should also be able to unlock it as admin from the users ACP profile page.
  18. What's the issue? What have you tried?
  19. Correct and it will continue to work with IC5 after your upgrade! This also means that you can just delete the subscriptions in the applications directory! PRO TIP(Or lazy Daniel who does this almost daily:D ) : If you don't want to deal too much with backups and restoring them, rename the folder to "to-delete-11-2-2024_subscriptions" and wait few days to see if anything is broken on your site (it really shouldn't, but if something broke after the rename, just rename it back) and if not, then feel free to delete it!
  20. This looks just like an old folder which is still on your file system. Commerce is the application which handles this in V4
  21. I have created a ticket to investigate this further.
  22. Your 3rd party applications group extension should extend IPS\Extensions\GroupFormAbstract