Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 13,226 through 13,250 (of 32,678 total)
  • Author
    Search Results
  • #169520
    Speedysnail6
    Participant

    Hi,

    The registrations on my site do not work. The register page is http://gravacraftmc.x10.mx/GamersCribb/register-2/, but after you are done with the registration form, it doesn’t bring you to the activate page, or send the email. It just refreshes the page.

    The activation page is : http://gravacraftmc.x10.mx/GamersCribb/activate-2

    BuddyPress Version: 1.8.1

    WordPress Version: 3.6

    Plugins: Just BuddyPress and Akismet

    Theme: BuddyPress default

    Thank you in advance,

    Ben

    #169519

    Topic: Spam

    in group forum Installing BuddyPress
    tinapowers
    Participant

    I have just activated buddy press in my wordpress site. I am wondering about spam activity: is there some way to eliminate these ‘members’. Also, if they remain members and the real members use the networking forums are they in jeopardy of having their email assaulted?

    #169501
    bmk0220
    Participant

    yes, i know, that is the problem that i’m having and of course why i can’t use it. you just keep bringing up the same issue. i’m well aware of what it does and does not do. been using it for years. it’s why i asked the question in the first place, just to see if things have changed in 1.8.1. i have already acknowledged that i know you can use buddypress on multisite but each site on my network is it’s own community and the subject of each is different, so it defeats the purpose to have all network-wide activity in one place. And it’s a fact that every site on the network is wordpress based, uses all of the same plugins and definitely could be running on a single network if Buddypress would work on each site individually. I know there is value in the way that BP works currently on multisite, some people prefer it, but i’m not the only one that would also like it to function independently on each site as well. Would be a great feature to have. Not holding my breath though, decided that 2 years ago. I currently use ManageWP to manage all sites or it would be impossible to do with my current staff.

    #169498

    In reply to: BuddyPress 1.8 Issue

    Joseph G.
    Participant

    I added a ticket here

    #169493
    chathuranga
    Participant

    I’m using buddypress.1.8.1, bbPress 2.3.2, wordpress-3.5.2 and buddypress default theme.
    When I go to create a group, it is created without any issue.
    But, after that I went to group Admin–>settings just clicked again save settings button.
    As a result of that group forum tab was vanished.
    Since, I’m new to buddypress, I don’t know whether this is a my fault or not.
    Now I’m working on localhost wamp server.
    What could be the problem?

    Thanks

    #169487
    Ben Hansen
    Participant

    buddypress has always been multisite compatible and in fact at certain point required wmpu but the way you are trying to use it is not recommended but there is a method i’m not sure how it’s done can’t seem to dig up the exact thing. but another thing which might be able to achieve what you want is using multi-network. maybe one of these will help.

    https://wordpress.org/plugins/bp-multi-network/

    https://wordpress.org/plugins/wp-multi-network/

    #169483
    @mercime
    Participant

    @mlakritz BuddyPress is compatible with nearly all WordPress themes. The few which are not fully compatible are those which have proprietary templating systems. Before continuing, change to Twenty Twelve theme and check if issue is resolved. If so, then it’s a theme issue. There are some solutions https://codex.buddypress.org/developer/theme-development/template-hierarchy/

    #169478

    In reply to: Buddy press set up

    aces
    Participant
    #169474
    tinapowers
    Participant

    I have installed and activated Buddy Press vs. 1.8.1. I have WordPress vs 3.6 installed.
    I have done nothing fancy in settings
    All items in components are checked.
    Pages are default
    Settings are all checked.

    I cannot seem to invite friends, i.e, there is not button with which to reach out.
    Simple problem; do you have an answer?

    #169463
    nlevy40
    Participant

    Hi,

    Well, I looked at all the posts regarding this issue and nothing has worked for me. This is what I did:

    – signed up at bluehost.com
    – through bluehost’s cPanel, I did a one-click install of WordPress at the root directory of my website.
    – made sure “anyone can register” is checked; made sure I can change permalinks
    – went to plugins >> add new: then installed buddypress and buddypress toolbar
    – then when I go to my website and clicked “Register” I get a 404 page. I checked the Settings >> Pages tab in BuddyPress and the dropdowns for Register and Activate does not show “Register”

    The only plugins I have are: akismet, buddypress, buddypress toolbar.

    All should be the most recent version.

    If anyone can help, I’d really appreciate it! Thanks.

    Ishanna
    Participant

    Hallo @sbrajesh !

    I tried use code:

    
    add_action(β€˜bp_friends_setup_nav’,'bpdev_custom_hide_friends_if_not_self’);
    
    function bpdev_custom_hide_friends_if_not_self(){
    if(bp_is_my_profile()|| is_super_admin())
    return ;
    
    bp_core_remove_nav_item(β€˜friends’);
    
    }
    
    

    I copied and pasted the code into the ‘bp_custom.php’ file but it did not work for me.
    I’m new to wordpress, html, php and css but I seem to find my way til now. Some advise please? I really need this option to work and I can’t find a plugin that cover this.

    Kind regards,

    #169445
    Anonymous User 7600456
    Inactive

    1. Which version of WordPress are you running? – 3.6 (but the problem was there before upgrading from 3.5.2)

    2. Did you install WordPress as a directory or subdomain install? – N/A

    3. If a directory install, is it in root or in a subdirectory? – N/A

    4. Did you upgrade from a previous version of WordPress? If so, from which version? – 3.5.2

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. – N/A

    6. Which version of BP are you running? – 1.8.1

    7. Did you upgraded from a previous version of BP? If so, from which version? – 1.8

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? – Many but I have tried disabling them all except Buddypress and the problem is still there.

    9. Are you using the standard BuddyPress themes or customized themes? – Customised theme but problem is persistent even with Twenty Twelve theme.

    10. Have you modified the core files in any way? – No

    11. Do you have any custom functions in bp-custom.php?

    <?php
    // hacks and mods will go here
    
    function activity_publish_custom_post_types($cpts) {
       $cpts[] = 'page';
       $cpts[] = 'attachment';
       return $cpts;
    }
    
    add_filter ( 'bp_blogs_record_post_post_types', 'activity_publish_custom_post_types' );
    add_filter ( 'bp_blogs_record_comment_post_types', 'activity_publish_custom_post_types' );
    
    add_filter( β€˜bp_get_total_member_count’, β€˜bp_core_get_total_member_count’ );
    
    ?>

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? – 2.3.2

    13. Please provide a list of any errors in your server’s log files.

    
    
    text/x-generic error_log 
    ASCII English text, with very long lines
    [31-Jul-2013 23:00:48 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE meta_key = 'entry_id' AND meta_value = '211'' at line 1 for query SELECT site_id FROM  WHERE meta_key = 'entry_id' AND meta_value = '211' made by require('wp-blog-header.php'), wp, WP->main, WP->parse_request, do_action_ref_array, call_user_func_array, GFPMoreStripe::parse_request, GFPMoreStripe::cancel_subscription, do_action('gform_subscription_canceled'), call_user_func_array, GFPMoreStripe::downgrade_stripe_user, GFUserData::get_site_by_entry_id
    [01-Aug-2013 04:22:39 UTC] wpMandrill Error: Error : 
    [01-Aug-2013 04:22:39 UTC] 2013-08-01 04:22:39 wpMandrill::sendEmail: Exception Caught => Invalid API Key
    
    [01-Aug-2013 04:22:39 UTC] blah@blah.com ([blah blah] Password Reset)
    
    [01-Aug-2013 16:08:26 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE meta_key = 'entry_id' AND meta_value = '217'' at line 1 for query SELECT site_id FROM  WHERE meta_key = 'entry_id' AND meta_value = '217' made by require('wp-blog-header.php'), wp, WP->main, WP->parse_request, do_action_ref_array, call_user_func_array, GFPMoreStripe::parse_request, GFPMoreStripe::cancel_subscription, do_action('gform_subscription_canceled'), call_user_func_array, GFPMoreStripe::downgrade_stripe_user, GFUserData::get_site_by_entry_id
    [02-Aug-2013 13:43:45 UTC] wpMandrill Error: Error : 
    [02-Aug-2013 13:43:45 UTC] 2013-08-02 13:43:45 wpMandrill::sendEmail: Exception Caught => Invalid API Key
    
    [02-Aug-2013 13:43:45 UTC] 
    wpMandrill::wp_mail_native: blah@blah.net ([blah blah] First Order)
    
    [02-Aug-2013 17:07:36 UTC] wpMandrill Error: Error : 
    [02-Aug-2013 17:07:36 UTC] 2013-08-02 17:07:36 wpMandrill::sendEmail: Exception Caught => Invalid API Key
    
    [02-Aug-2013 17:07:36 UTC] 
    wpMandrill::wp_mail_native: blah@blah.net ([blah blah] First Order)
    
    [02-Aug-2013 21:57:15 UTC] wpMandrill Error: Error : 
    [02-Aug-2013 21:57:15 UTC] 2013-08-02 21:57:15 wpMandrill::sendEmail: Exception Caught => Invalid API Key
    
    [02-Aug-2013 21:57:15 UTC] 
    wpMandrill::wp_mail_native: blah@blah.com (Welcome to blahblah!)
    
    [06-Aug-2013 03:54:52 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE meta_key = 'entry_id' AND meta_value = '265'' at line 1 for query SELECT site_id FROM  WHERE meta_key = 'entry_id' AND meta_value = '265' made by require('wp-blog-header.php'), wp, WP->main, WP->parse_request, do_action_ref_array, call_user_func_array, GFPMoreStripe::parse_request, GFPMoreStripe::cancel_subscription, do_action('gform_subscription_canceled'), call_user_func_array, GFPMoreStripe::downgrade_stripe_user, GFUserData::get_site_by_entry_id
    [06-Aug-2013 13:23:34 UTC] WordPress database error Unknown column '$autopurge_interval' in 'where clause' for query DELETE ts FROM wp_slim_stats ts WHERE ts.dt < UNIX_TIMESTAMP(DATE_SUB(NOW(), INTERVAL $autopurge_interval DAY)) made by do_action_ref_array, call_user_func_array, wp_slimstat::wp_slimstat_purge
    
    

    14. Which company provides your hosting? – OVH.com

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? – Apache

    Thank you @mercime for your reply. I have disabled all plugins and used a fresh Twenty Twelve them and the problem is still there. Thanks in advance.

    #169438

    In reply to: BP Groups and Forums

    Hugo Ashmore
    Participant

    @faramarz @mercime

    This issue is resolved in this ticket on BP’s trac and will be included in the 1.8.1 point release.
    https://buddypress.trac.wordpress.org/changeset/7332/

    hitkid
    Participant

    Keep getting this error: Fatal error:

    Call to undefined function bp_has_forum_topics() in C:\BitNami\wordpress-3.5.2-0\apps\wordpress\htdocs\wp-content\themes\My-Child\New Test.php on line 16

    When trying to put this loop found in the codex in a template:

    	<?php if ( bp_has_forum_topics('newest') ) : ?>
     
        <div class="pagination">
     
            <div id="post-count" class="pag-count">
                <?php bp_forum_pagination_count() ?>
            </div>
     
            <div class="pagination-links" id="topic-pag">
                <?php bp_forum_pagination() ?>
            </div>
     
        </div>
     
        <table class="forum">
     
            <tr>
                <th id="th-title"><?php _e( 'Topic Title', 'buddypress' ) ?></th>
                <th id="th-poster"><?php _e( 'Latest Poster', 'buddypress' ) ?></th>
     
                <?php if ( !bp_is_group_forum() ) : ?>
                    <th id="th-group"><?php _e( 'Posted In Group', 'buddypress' ) ?></th>
                <?php endif; ?>
     
                <th id="th-postcount"><?php _e( 'Posts', 'buddypress' ) ?></th>
                <th id="th-freshness"><?php _e( 'Freshness', 'buddypress' ) ?></th>
            </tr>
     
            <?php while ( bp_forum_topics() ) : bp_the_forum_topic(); ?>
     
            <tr class="<?php bp_the_topic_css_class() ?>">
                <td class="td-title">
                    <a class="topic-title" href="<?php bp_the_topic_permalink() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>">
                        <?php bp_the_topic_title() ?>
                    </a>
                </td>
                <td class="td-poster">
                    <a href="<?php bp_the_topic_permalink() ?>"><?php bp_the_topic_last_poster_avatar( 'type=thumb&width=20&height=20' ) ?></a>
                    <div class="poster-name"><?php bp_the_topic_last_poster_name() ?></div>
                </td>
     
                <?php if ( !bp_is_group_forum() ) : ?>
                    <td class="td-group">
                        <a href="<?php bp_the_topic_object_permalink() ?>"><?php bp_the_topic_object_avatar( 'type=thumb&width=20&height=20' ) ?></a>
                        <div class="object-name"><a href="<?php bp_the_topic_object_permalink() ?>" title="<?php bp_the_topic_object_name() ?>"><?php bp_the_topic_object_name() ?></a></div>
                    </td>
                <?php endif; ?>
     
                <td class="td-postcount">
                    <?php bp_the_topic_total_posts() ?>
                </td>
                <td class="td-freshness">
                    <?php bp_the_topic_time_since_last_post() ?>
                </td>
            </tr>
     
            <?php endwhile; ?>
     
        </table>
     
    <?php else: ?>
     
        <div id="message" class="info">
            <p><?php _e( 'Sorry, there were no forum topics found.', 'buddypress' ) ?></p>
        </div>
     
    <?php endif;?>
    #169416
    Uncle Nerdicus
    Participant

    Nobody? πŸ™

    Uncle Nerdicus
    Participant

    I have a piece of PHP code that gets a list of allowed extensions from the WordPress Database and only allows files uploaded that are those file extensions. What I would like to do is make the code allow ALL extensions but NOT allow only a couple of file extensions (executables like exe, shells, binaries, etc.)

    Here is the code:
    $allwd_ext = get_option( ‘ma_allowedExtension’ );
    $allowedExts = explode(“,”,$allwd_ext);
    $extension = end(explode(“.”, $_FILES[$f_u][“name”]))`;

    Any ideas appritiated πŸ™‚

    #169412
    @mercime
    Participant
    #169397
    Andrea Fercia
    Participant

    @sbrajesh πŸ™‚

    testing bp live notification 1.0.3 plugin, I’m not sure maybe this may vary depending on your PHP error reporting setting, btw it didn’t work for me so I checked the ajax response in Firebug and it started with some html (PHP warning):

    <br /><b>Warning</b>: Missing argument 2 for wpdb::prepare() … etc. and then the actual JSON started with {“change”:”yes” … etc.

    investigating a bit I came to this Andrew Nacin post:

    PHP Warning: Missing argument 2 for wpdb::prepare()

    so I just changed a line in bp-live-notification.php, inside function “bpln_get_notification_messages”

    this line:
    $notifications =$wpdb->get_results( $wpdb->prepare( “SELECT * FROM {$bp->core->table_name_notifications} WHERE id in {$list_ids} AND is_new = 1”) );

    changed in:

    $notifications =$wpdb->get_results( $wpdb->prepare( “SELECT * FROM {$bp->core->table_name_notifications} WHERE id in {%s} AND is_new = %d”), $list_ids, 1 );

    this suppressed the PHP warning and now seems everything is perfectly working.
    Would you consider the patch? πŸ™‚
    thx very much, greetings from Italy
    Andrea

    #169387
    StuartManning
    Participant

    I’m also on

    WordPress 3.6
    BuddyPress 1.8

    And I get:

    http://[website]/members/%5Buser%5D/profile/edit/group/1/

    And get a 404

    reggie3
    Participant

    WordPress 3.51 (soon to be 3.6); BuddyPress 1.8

    We have a central bank of photos for all of our users. These are to be used by a number of different applications (WordPress, Drupal, etc.) across the organization.

    We have written a script that will create Word/BuddyPress avatar images & thumbnails, hash the user’s id to create the filenames, move the images to the correct directories, etc. and all this works fine.

    We want to prevent users from uploading different avatars into Word/BuddyPress after the photos from the central bank have been created. Is there a way to do this other than hacking the code?

    If hacking the code is the only way, any suggestions as to which php scripts to modify, and/or how to do that?

    Thanks!

    #169373
    Unsal Korkmaz
    Participant

    Uhm, It seems, I forgot to update this topic.

    Here is theme:

    FirmaSite

    kuching
    Participant

    I’m trying to make a BuddyPress plugin using these guidelines

    http://codex.buddypress.org/theme-compatibility/how-to-enjoy-bp-theme-compat-in-plugins/

    however, if I try to add a class that extends BP_Component WordPress will crash and return the error.

    I tried to load my plugin after BuddyPress using the following code:

    function bp_pop_load() {
    
        require_once( dirname( __FILE__ ) . '/bp_pop.php' );
    }
    add_action( 'bp_include', 'bp_pop_load' );

    but it doesn’t work

    if I wrap my whole plugin with a class_exists( ‘BP_Component’ ) conditional, nothing will happen (condition is false)

    How can I fix this?

    fiy, I’m just calling BP_Component like this:

    class BP_PostsOnProfile extends BP_Component {
      // my stuff... but error is thrown at the line above
    }
    #169370
    paddelboot
    Participant

    Hi,

    I am creating a function that hooks into the WordPress core hook ‘wp_insert_comment’ in a multisite environment. To my complete surprise, this function will not have the BuddyPress vars and functions available. Needless to say that I am depending on these functions.

    I am a bit lost – how is it possible that BuddyPress is not being initialized at this point?

    Paddelboot

    #169355
    erp_linkin
    Participant

    Wordpress Version 3.6
    Buddpress Version 1.7.1 ( Yes I will upgrade )
    bbpress Vesrion 2.3.2


    The Forums in Groups uses plugins-php (buddypress/bp-themes/bp-default/groups/single/plugins.php) instead of forum.php(buddypress/bp-themes/bp-default/groups/single/forum.php)

    Why is this happening and how do I rectify it instead.

    ( I have installed bbpress and each group is marked to have its own Forum )

    Please advice,

    Thank you.

Viewing 25 results - 13,226 through 13,250 (of 32,678 total)
Skip to toolbar