Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 50 total)

  • wackao
    Participant

    @wackao

    Try using invite code plugin for buddypress.


    wackao
    Participant

    @wackao

    Cached pages.
    The nonce validation is required fro logins. If pages are cached, the nonce expires every 24 hours and this would be a frequent issue on site.


    wackao
    Participant

    @wackao

    Is the user addition not working in WP admin as well ? check if there is any possible javascript error on wp admin page.

    WPLMS has its own good interface for adding users in groups via rest API.

    re-save the WP admin – Settings – BuddyPress – Components, so that groups tables and folder structure is installed and setup.


    wackao
    Participant

    @wackao

    Please share more details on this.
    Also, re-save components in WP admin-settings-buddypress – components , doing this would setup any missing tables and folder structure.


    wackao
    Participant

    @wackao

    The scanner is scanning a url so it does not mean the package is corrupted it could very well mean the site may have some malware.

    Try testing on http://virustotal.com/ , download the plugin from wp.org/plugins/buddypress and it comes out clean.


    wackao
    Participant

    @wackao

    Obviously any API will not and should not return full data. There is a limit on how much data can be fetched.

    By default buddypress would return 20 units then you need change the page.

    So the next API goes like this :

    https://mysite.com/wp-json/buddypress/v1/activity?user_id=1&page=2


    wackao
    Participant

    @wackao

    By default there is no shop tab under BuddyPress profile. So if you are using some plugin this could be an issue stemming from the plugin


    wackao
    Participant

    @wackao

    1. This issue seems to be coming from the Groups template in the theme. Contact theme author on this.
    2. The second issue is coming fomr a hook where widgets are initialised. So this could again be coming from the outdated theme.
    I am not sure about the code
    <div class=”col-1-ads”>
    <?php. echo do_shortcode(‘[widget id=”media_gallery-3″]’); ?>
    </div>


    wackao
    Participant

    @wackao

    Interesting idea for a plugin.


    wackao
    Participant

    @wackao

    Yes, we did that. Try https://demos.wplms.io this is a BuddyPress site with simplified registration process.


    wackao
    Participant

    @wackao

    Merry Christmas. A Lot of spam is being posted on the BP forums, kindly check or assign a moderator to clean it up.


    wackao
    Participant

    @wackao

    The answer is cached page. This is a typical issue with WordPress sites. That in order to login the page load request must bypass all cache and hit the server. The server then reads the cookie and logs the user in.
    We create a framework ( going live soon on wp.org ) for BuddyPress that works using JWT tokens and without cookies. The result is that is perfectly cacheable system which even works with serverless applications.


    wackao
    Participant

    @wackao

    The only other possibility is “human” spam which can not be caught by any software ( unless it s AI Powered ). What you can do is strip all HTML and links, so the spammers would lose all interest in your site.

    add_filter('bp_before_groups_edit_base_group_details_parse_args',function($args){
    		$args['description'] = wp_strip_all_tags($args['description']);
    		return $args;
    	});

    p.s : In our theme we already added the restriction on “Who can create groups”.


    wackao
    Participant

    @wackao

    Guys what is happening, can anyone mark spam here ?


    wackao
    Participant

    @wackao

    It would be a mix of BuddyPress and BBPress. The main challenge is that it has to be fast, without page loads. We already have the PWA framework on BuddyPress and are releasing new themes. Built on ReactJS , HeadLess Social network, super fast community framework. [ See video : https://www.youtube.com/watch?v=lLDs4Ue1vzU ]

    Current BuddyBoss is legacy just like Buddypress. Working with Ajax calls , jQuery.


    wackao
    Participant

    @wackao

    BuddyPress latest version is 9.1.1 , BBPress is a different thing altogether.


    wackao
    Participant

    @wackao

    This shortcode is not a BuddyPress shortcode. You will either need to give more information like what this shortcode does and possibly its source code for anyone to help you out on this.


    wackao
    Participant

    @wackao

    This is BuddyPress, kindly seek support from BuddyBoss on it 🙂 or simply migrate to BuddyPress


    wackao
    Participant

    @wackao

    Following above fix, will start sending textual mail, not HTML emails.
    This plugin https://wordpress.org/plugins/vibe-buddypress-to-wp-mail-fix/ would use WP Mail and send HTML emails.


    wackao
    Participant

    @wackao

    BuddyPress requires a minimum of 128mb of PHP RAM. Make sure your web host serves this.


    wackao
    Participant

    @wackao

    1. Make sure registration page exists in WP admin – Settings- BuddyPress – pages
    2. Re-save the permalinks

    The registration page can be cached, no issues there.


    Optionally, our plugin which enhances BuddyPress but includes ReactJS & PWA has ReactJS powered forms which work flawless and there is no load on the site as the forms are created using javascript. Let me know if you want me to share a link of it.


    wackao
    Participant

    @wackao

    It is really easy to set it up like this. Default BBPress theme.


    wackao
    Participant

    @wackao

    This is such a nice suggestion ! Not sure if this is possible in current BuddyPress implementation.


    wackao
    Participant

    @wackao

    Yes, there are 2 most probable reasons :

    1. Reverse IP does not match.
    2. Missing SPF rules in DNS. If you have cPanel powered server, you can easily check in its SMTP settings which is able to detect and tell you the exact cause. You may be missing a SPF rule in your DNS, cPanel will mention that.

    —-
    A quick alternate is to install a WordPress mail plugin like Postman SMTP and try sending the emails in the textual format, or use this plugin : https://wordpress.org/plugins/vibe-buddypress-to-wp-mail-fix


    wackao
    Participant

    @wackao

    Can you check which php version is active in your site ?

Viewing 25 replies - 1 through 25 (of 50 total)
Skip to toolbar