Jump to content

teraßyte

Clients
  • Posts

    33,434
  • Joined

  • Days Won

    47

Reputation Activity

  1. Like
    teraßyte got a reaction from Jim M in Cannot upgrade automatically due to "There are some problems with your database."   
    Don't use the upgrade script in ACP. Try going manually to /admin/upgrade instead.
  2. Agree
    teraßyte reacted to Nathan Explosion in Can Header Logo link to Page rather than Forums?   
    You have replaced this:
    setting="base_url" You haven't replaced this:
    {setting="base_url"} notice the curly braces you have left behind, that you should be removing?
  3. Thanks
    teraßyte got a reaction from PinPics in Can Header Logo link to Page rather than Forums?   
    There is no option for that currently. You need to edit the template core > front > global > logo and replace (twice) the link:
    {setting="base_url"} with the one you want to use.
  4. Like
    teraßyte got a reaction from SeNioR- in [BUG 4.7.14] Wrong topic class check on "IPS\forums\Topics" instead of "IPS\forums\Topic" (singular)   
    While reviewing some code in the forums application I found a couple of places that check the wrong class name for topics if the group is allowed to hide its own topics.
     
    These are the 2 files where IPS\forums\Topics needs to be replaced with IPS\forums\Topic:
    Line 649 in \applications\forums\modules\front\forums\forums.php $canHide = ( \IPS\Member::loggedIn()->group['g_hide_own_posts'] == '1' or \in_array( 'IPS\forums\Topics', explode( ',', \IPS\Member::loggedIn()->group['g_hide_own_posts'] ) ) );  
    Line 530 in \applications\forums\sources\Topic\Topic.php $canHide = ( $item ) ? $item->canHide() : ( \IPS\Member::loggedIn()->group['g_hide_own_posts'] == '1' or \in_array( 'IPS\forums\Topics', explode( ',', \IPS\Member::loggedIn()->group['g_hide_own_posts'] ) ) );  
     
    I searched all the files just in case, but those are the only ones I found.
  5. Like
    teraßyte got a reaction from DawPi in Limit number of new topic   
    There is no default option like that in Invision Community. You need a modification for it: https://www.invisioneer.org/files/file/36-dp42-topics-per-time/
  6. Like
    teraßyte got a reaction from DawPi in [BUG 4.7.14] Wrong topic class check on "IPS\forums\Topics" instead of "IPS\forums\Topic" (singular)   
    While reviewing some code in the forums application I found a couple of places that check the wrong class name for topics if the group is allowed to hide its own topics.
     
    These are the 2 files where IPS\forums\Topics needs to be replaced with IPS\forums\Topic:
    Line 649 in \applications\forums\modules\front\forums\forums.php $canHide = ( \IPS\Member::loggedIn()->group['g_hide_own_posts'] == '1' or \in_array( 'IPS\forums\Topics', explode( ',', \IPS\Member::loggedIn()->group['g_hide_own_posts'] ) ) );  
    Line 530 in \applications\forums\sources\Topic\Topic.php $canHide = ( $item ) ? $item->canHide() : ( \IPS\Member::loggedIn()->group['g_hide_own_posts'] == '1' or \in_array( 'IPS\forums\Topics', explode( ',', \IPS\Member::loggedIn()->group['g_hide_own_posts'] ) ) );  
     
    I searched all the files just in case, but those are the only ones I found.
  7. Like
    teraßyte got a reaction from DzUser in Achievements & Ranks by post   
    There is a tool in ACP to rebuild the achievements right away (see the button in the Other Settings screenshot):
     
    Before rebuilding, you can change the rules so that they add only 1 point for each content they make. By default, users get 10 points for a new item they post and 5 points for each comment/reply.
  8. Thanks
    teraßyte reacted to Ehren in Invision Community 5: Badge creation and icon customization   
    Hi @MythonPonty
    There's already a feature for adding a counter badge. 👍

  9. Thanks
    teraßyte got a reaction from PinPics in Import Member List?   
    It's the joined column in the core_members table. The value must be a UNIX timestamp: https://www.unixtimestamp.com/
    Example timestamp for the current time: 1700338973
  10. Thanks
    teraßyte got a reaction from PinPics in Import Member List?   
    Yeah. With 10k accounts, options #1 and #2 aren't really feasible. 😅
     
    The only real option would be #3. A quick script to import a CSV file that contains only the account email and their joined date. It could quickly go through the data to update the date column in the members' table using the email.
    It should be easy enough for your developer in case you want to go ahead with it.
  11. Like
    teraßyte got a reaction from PinPics in Import Member List?   
    Yes, it skips the account. The code doesn't account for updating existing ones.
    Your only options are:
    Delete the imported members and re-import them with the proper field selected for the join date. If the accounts are only a few, manually update the unix timestamps directly in the database. (Always make a backup before any manual edits.) If you have a lot of accounts, create a script to automatically update the joined unix timestamp. Give up on updating the joined date. 😋
  12. Agree
    teraßyte got a reaction from Randy Calvert in Import Member List?   
    Yes, it skips the account. The code doesn't account for updating existing ones.
    Your only options are:
    Delete the imported members and re-import them with the proper field selected for the join date. If the accounts are only a few, manually update the unix timestamps directly in the database. (Always make a backup before any manual edits.) If you have a lot of accounts, create a script to automatically update the joined unix timestamp. Give up on updating the joined date. 😋
  13. Like
    teraßyte got a reaction from DzUser in Forum down after successful migration   
    Not really. The setting may speed up things slightly based on the server configuration, but I found it causes problems more often than not. Personally, I suggest leaving it disabling.
  14. Haha
    teraßyte reacted to Como in Outgoing email settings   
    Thank you @teraßyte. Despite using it, I did not realise it was called that. 🙄
  15. Like
    teraßyte got a reaction from DzUser in Forum down after successful migration   
    Try disabling completely the template disk caching setting for now. Does that fix the issue?
  16. Haha
    teraßyte reacted to Stuart Silvester in Invision Community 5: Badge creation and icon customization   
    It's so cool, we just want to make sure you see it.
    I'll get it removed from unread content.
  17. Thanks
    teraßyte got a reaction from sofos in After clicking Submit Reply, saving is very slow   
    Instead of the number of followers, it might just be the SMTP server being slow in its starting reply. Switch temporarily to PHP mail and try again to post something. Does the delay disappear?
  18. Thanks
    teraßyte got a reaction from sofos in After clicking Submit Reply, saving is very slow   
    Does the topic you're replying to have a lot of followers? Or does it happen also for topics with few or zero followers?
  19. Like
    teraßyte got a reaction from DawPi in Task Cronjob Suddenly Triggering Excessive Resource Usage after 4.7.14 Upgrade   
    @DawPi It's the extension file in the core app: \applications\core\extensions\core\Sitemap\Content.php
  20. Like
    teraßyte reacted to Ehren in Invision Community 5: Badge creation and icon customization   
    Invision Community offers fantastic ways of customizing the user experience for your members, and today, we’re excited to introduce some new and really simple ways of customizing Invision Community 5 even further using our new icon tools.
     
    Icon Picker
    Lets begin with our brand new icon picker. Containing both Font Awesome icons and emojis, the new picker allows you to easily search and assign icons to specific areas throughout your site. Lets take a look at some examples!
    icon-picker.mp4  
    Navigation icons
    Adding icons to the navigation list has been a highly requested feature, so we're happy to announce that you can now use this new picker to do exactly that, for both the horizontal and vertical navigation panels, without needing to modify your theme.

     
    Forum icons
    Uploading forum icons is a great way to personalize individual areas of your community. In the past, these icons have typically been images, uploaded via the admin panel. In addition to the upload form, the icon picker now makes it a breeze to assign icons to forums - and if a Font Awesome icon is chosen, it'll even inherit the featured forum color.

     
    Forum Feature Color
    We have brought the existing forum feature color to feed view allowing for a flash of color and personalization that helps associate a color with a specific forum. The feature color pairs really well with the card image to lift the forum display.

     
    Icon creator for badges, ranks and reactions
    Creating unique badges, ranks and reactions is a great way to boost activity within your community by encouraging members to share more engaging and frequent content - but designing these icons from scratch using a graphics program often comes with hurdles of its own.
    With our new icon creator, you can now design your own custom icons for badges, ranks and reactions straight from your Admin panel, using a combination of colors, icons and shapes.
    icon-creator.mp4  
     
    We think this new icon creator will make the rank, badges and reactions features even more accessible for everyone, allowing you to create a user experience that is uniquely yours. With Invision Community 5, bringing in customization and personalization moves beyond adding new themes.
    We're excited to see how you can take advantage of these new tools, and we look forward hearing your feedback in the comments below!
     


    View full blog entry
  21. Like
    teraßyte got a reaction from Meddysong in X Logo Shows as Facebook Logo after upgrade to 4.7.14   
    The missing <li> elements issue is something I reported a few days ago:
     
  22. Like
    teraßyte got a reaction from Maxxius in X Logo Shows as Facebook Logo after upgrade to 4.7.14   
    The missing <li> elements issue is something I reported a few days ago:
     
  23. Thanks
    teraßyte got a reaction from sadams101 in X Logo Shows as Facebook Logo after upgrade to 4.7.14   
    The missing <li> elements issue is something I reported a few days ago:
     
  24. Thanks
    teraßyte got a reaction from sadams101 in [4.7.14] Bug in template core > front > global > siteSocialProfiles   
    In the latest 4.7.14 version, the template core > front > global > siteSocialProfiles was changed to add support for X (former Twitter) share link, but the <LI> element was mistakenly changed to an <A> element instead.
     
    4.7.13 version:
    <li class='cUserNav_icon'> 4.7.14 version:
    <a class='cUserNav_icon'>  
    You can easily compare it in the Theme Differences tool, too: https://invisioncommunity.com/index.php?app=core&module=system&controller=plugins&do=diff
  25. Like
    teraßyte got a reaction from SeNioR- in [4.7.14] Bug in template core > front > global > siteSocialProfiles   
    In the latest 4.7.14 version, the template core > front > global > siteSocialProfiles was changed to add support for X (former Twitter) share link, but the <LI> element was mistakenly changed to an <A> element instead.
     
    4.7.13 version:
    <li class='cUserNav_icon'> 4.7.14 version:
    <a class='cUserNav_icon'>  
    You can easily compare it in the Theme Differences tool, too: https://invisioncommunity.com/index.php?app=core&module=system&controller=plugins&do=diff
×
×
  • Create New...