Jump to content

Adriano Faria

Clients
  • Posts

    31,847
  • Joined

  • Days Won

    475

Community Answers

  1. Adriano Faria's post in Downloads App: Extra Fields - Password was marked as the answer   
    Developing this while I give my head a rest (a few hours) from a resource I'm working on:

     

     

     

     

     
    I'll come back to this during the weekend. Should be available in the marketplace in a few days.
  2. Adriano Faria's post in Only City, State in the location field was marked as the answer   
    This still works and will keep working as it only changes a flag in the method. 
    You can still download it via IPS site but you can’t via your ACP.
  3. Adriano Faria's post in admin account can not use tag prefixs? was marked as the answer   
    Do you mean this yellow part isn't showing up?

    Working fine on my 4.7.7 online and 4.7.8 Beta 2 boards.
  4. Adriano Faria's post in Preventing Club Images from posting in the main Gallery was marked as the answer   
    See Show Club Content Areas in the clubs settings:
     
  5. Adriano Faria's post in Sharing Forum Posts to Facebook with the link doesn't get any image to display on Facebook was marked as the answer   
    Facebook will use the image set in og:image meta tag. You can manually set images with 3rd-party resources:
     
     
  6. Adriano Faria's post in Change Thread Ownership was marked as the answer   
    You can either:
    1: make user B a moderator to edit anyone else’s posts
    2: use a 3rd-party resource to change the topic authorship:
     
  7. Adriano Faria's post in ParseError: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE) after server migration was marked as the answer   
    The message is clear. You need at least PHP 8. Which IPS version?
  8. Adriano Faria's post in Hidden thread question was marked as the answer   
    If it’s hidden due a moderator action, author won’t see it. If it’s hidden because it’s unapproved yet, author can see it.
  9. Adriano Faria's post in Club field "Max cover photo file size" not hidden when Clubs is disabled was marked as the answer   
    Fix:
    Change:
    $form->add( new \IPS\Helpers\Form\YesNo( 'clubs_enabled_setting', \IPS\Settings::i()->clubs, FALSE, array( 'togglesOn' => array( 'clubs_default_sort', 'clubs_header', 'clubs_locations', 'clubs_modperms', 'clubs_require_approval', 'form_header_club_display_settings', 'form_header_club_moderation', 'clubs_default_view', 'clubs_allow_view_change', 'club_nodes_in_apps', 'form_header_clubs_paid_settings', 'clubs_paid_on', '_allow_club_moderators' ) ) ) ); to:
    $form->add( new \IPS\Helpers\Form\YesNo( 'clubs_enabled_setting', \IPS\Settings::i()->clubs, FALSE, array( 'togglesOn' => array( 'clubs_default_sort', 'clubs_header', 'clubs_locations', 'clubs_modperms', 'clubs_require_approval', 'form_header_club_display_settings', 'form_header_club_moderation', 'clubs_default_view', 'clubs_allow_view_change', 'club_nodes_in_apps', 'form_header_clubs_paid_settings', 'clubs_paid_on', '_allow_club_moderators', 'club_max_cover' ) ) ) ); in applications / core / modules / admin / clubs settings.php::manage()

  10. Adriano Faria's post in Doubt for delete all members on community and restart count ID members was marked as the answer   
    If you have only one member and this member is ID = 1, you can run the following query to reset:
    ALTER TABLE core_members AUTO_INCREMENT = 2;
    You would need to make sure you have NO other data related to member IDs in your entire database, table per table, that’s why a reinstall is recommended.
    Use at your own risk and make a backup of your database before if you’re willing to try it.
  11. Adriano Faria's post in Background tasks got stuck was marked as the answer   
  12. Adriano Faria's post in approval queue - reset to zero hiding all items in it was marked as the answer   
    forums_topics and forums_posts.
    Take a look at this topic: 
    There will be only difference: you’ll have to replace 2 for -1 but I’m not totally sure; would have to make a quick test. I’d recommend to wait for a confirmation. I should be able to do it in a couple of hours or so.
  13. Adriano Faria's post in Restore all of a user's posts / responses (unhide) was marked as the answer   
    You can run the following query in your PHPMyAdmin (your host panel:
    update forums_posts set queued = 0 WHERE queued = 2 AND author_id = XXX; where XXX is the member_id.
    After that, hide and unhide any post just to update the cache so then it will dismiss the pending notice in the index/forum view.
    DO AT YOUR OWN RISK.
  14. Adriano Faria's post in Custom Registration Field in Database was marked as the answer   
    core_pfields_groups, core_pfields_data and core_pfields_content.
  15. Adriano Faria's post in New Member Moderation Q was marked as the answer   
    Manage validating members is an ACP feature. Only admins can do it.
    You can use a 3rd-party resource to make it on front-end and also allow your moderators to do it:
     
  16. Adriano Faria's post in Hello , i want o install a test forum on my license was marked as the answer   
    If you’re not hosted by IPS:
     
  17. Adriano Faria's post in Soldier profiles in Perscom was marked as the answer   
    You should use the support topic of this resource: 
     
  18. Adriano Faria's post in How to put birthdays as an event on the calendar was marked as the answer   
    It was removed. Now it is a Events driven app; not birthdays. 
  19. Adriano Faria's post in Is there documentation anywhere explaining points and reputation? was marked as the answer   
  20. Adriano Faria's post in Add emoticons was marked as the answer   
    See REACTIONS here:
     
  21. Adriano Faria's post in spam trough contact us was marked as the answer   
    A few options:
     
     
     
  22. Adriano Faria's post in License renewed and cannot install plugins/apps nor post in some forums was marked as the answer   
    Logoff and log in again. 
  23. Adriano Faria's post in Secondary Groups Data was marked as the answer   
    core_members.mgroup_others
  24. Adriano Faria's post in Chat 1.1.7 (Adriano Faria) was marked as the answer   
    It won’t. EOL.
  25. Adriano Faria's post in Unable to access admin cp after 4.7.5 update and then 4.7.5 patch was marked as the answer   
    Just took a look in your board and there is a ton of log entries:
    for this resource, which isn't compatible IPS 4.7.X:
    I removed the plugin. Your board is OK now.
×
×
  • Create New...