Jump to content

Adriano Faria

Clients
  • Joined

Solutions

  1. Adriano Faria's post in IPS Archive Version? was marked as the answer   
    Example: /applications/core/data/versions.json
    This file will contain all versions from that app. The latest one is the version in use.
    All apps must have this file.
  2. Adriano Faria's post in MemberACPProfile extension not working was marked as the answer   
    This is one example from one of my resources:
    class _Main extends \IPS\core\MemberACPProfile\MainTab
    {
        /**
         * Get left-column blocks
         *
         * @return    array
         */
        public function leftColumnBlocks()
        {
            return array(
                'IPS\membernotes\extensions\core\MemberACPProfileBlocks\AccountData',
            );
        }
        
        /**
         * Get main-column blocks
         *
         * @return    array
         */
        public function mainColumnBlocks()
        {
            return array(
                'IPS\membernotes\extensions\core\MemberACPProfileBlocks\Notes',
            );
        }
        
        /**
         * Get right-column blocks
         *
         * @return    array
         */
        public function rightColumnBlocks()
        {
            return array();
        }
        /**
         * Get Output
         *
         * @return    string
         */
        public function output()
        {    
            return parent::output();
        }
    }
     
     
    Mobile phone. No way to use CODE tag.
  3. Adriano Faria's post in Disable "About Me" was marked as the answer   
    Go to ACP -> Members -> Profiles Fields and disable it there.
    EDIT: I don’t think you can disable it; only remove it.
    You can disable it per group with a 3rd-party resource:
     
  4. Adriano Faria's post in New User Settings Tab was marked as the answer   
  5. Adriano Faria's post in Is there a solution for preventing individual members from receiving PM? was marked as the answer   
    I guess this one can:
    You better confirm with @A Zayed first.
  6. Adriano Faria's post in [This site] "Solutions" in the Avatar container not present in all subs was marked as the answer   
    I believe it shows up only in forums where the solved is enabled.
  7. Adriano Faria's post in Requiring Approval For New User's First Post Globally was marked as the answer   
    It’s a group thing. Edit the group you want, probably Members, and you’ll see it in Content tab: Require approval before content shows?.
    Enable it and enter 1 in after field and choose approved items of content on the other field.
  8. Adriano Faria's post in Disallow guests from purchase in Downloads was marked as the answer   
    Just a closure on this. I'll leave the solution here as it may help someone else.
    @Daniel F just responded to the ticket and to work like IPS, you need to remove the permission from your first group (Members, Visitors on IPS) to download, then Guests won't be able to purchase it.
    Thank you @Jim M.
  9. 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.
  10. 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.
  11. 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.
  12. 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:
     
  13. 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:
     
     
  14. 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:
     
  15. 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?
  16. 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.
  17. 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()

  18. 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.
  19. Adriano Faria's post in Background tasks got stuck was marked as the answer   
  20. 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.
  21. 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.
  22. 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.
  23. 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:
     
  24. 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:
     
  25. Adriano Faria's post in Soldier profiles in Perscom was marked as the answer   
    You should use the support topic of this resource: