Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 52,576 through 52,600 (of 69,016 total)
  • Author
    Search Results
  • Part of the problem might be running BuddyPress in a subdirectory. We use some tricky URI parsing to dynamically trap and trigger the pages that don’t actually exist. To do this, we count the slashes and put the slugs in the “correct” positions, which in your case are one level off.

    You could .htaccess your way out of this by redirecting, but your best bet is to install it at the root of your site.

    For those only having the trouble with /register and /activate, make sure you have member registration turned on. Since it’s off by default on single site WordPress, that has gotten me a few times.

    #78010

    You’ll also need to make sure you have Arabic installed for WordPress, and if using multi-site, Arabic must be set as the site language in site wide settings.

    #78009
    thekmen
    Participant

    Thanks @jeffsayre that’s some serious reading…
    With ‘Action Event Firing Order’ turned on, I don’t see data_to_add being fired.
    With ‘Action Event Firing’ turned on, I do get ‘Firing Sequence 71: bp_activity_posted_update –> data_to_add –> Time fired: 1273766497.1222’ after posting an update.

    I’m still completely lost though…

    This is so strange, I think I must be doing something wrong, no one else seems to have this problem. Google would tell me so.

    No change.

    I’ve installed WordPress manually, even deleting and recreating the database. I enabled permalinks.

    Then, I installed BP manually — uploading the folder to the site via FTP and the same results occur.

    Ideas?

    #77999
    Jeff Sayre
    Participant

    You must also set your default language in WPMU’s wp-config.php file. Look for the following line in that file:


    define ('WPLANG', '');

    BOW
    Participant

    @r-a-y Hi matey

    Did you get any further on releasing this as a simple plugin?

    Cheers!

    #77989
    Jeff Sayre
    Participant

    It sounds like you may have a hook sequence firing issue. In other words, your added action function might not be getting fired. This could be an issue with your code or even the BuddyPress code.

    You can download my plugin WordPress Hook Sniffer to see if that might be the case. It takes awhile to figure out how to use my plugin but the two articles I wrote should guide you through the process.

    jhull
    Member

    Has anyone solved this yet? I am still getting this error.

    I can configure, add BuddyPress, activate plug in and themes, etc.

    Clicking on http://computername.corporatedomainname.com/wordpress-mu/ (where I am installed) lets me go to the BuddyPress home page (and very exciting it is too). Then clicking on the “Members” tab give me a http://computername.corporeatedomainname.com/wordpress-mu/members/ and

    “Object not found!

    The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.

    If you think this is a server error, please contact the webmaster.
    Error 404?

    #77987
    thekmen
    Participant

    Thanks @jeffsayre,
    No errors & the save method seems to be receiving the data.
    using:

    function add_my_data( $field_1, $field_2, $field_3 ) {
    global $bp;
    $update = new BP_Example_TableName();
    $update->field_1 = $field_1;
    $update->field_2 = $field_2;
    $update->field_3 = $field_3;

    $save = $update->save();
    return $save;
    }

    function data_to_add() {
    add_my_data('100', '200','6');
    }

    if I add

    add_action('wp','data_to_add');

    the data is inserted on page load but if I use:

    add_action('bp_activity_posted_update','data_to_add');

    nothing gets added to the database.
    Any ideas?

    #77986
    DJ Rg
    Participant

    Hello

    Is this gonna fixed in BuddyPress?

    geekoftodd
    Member

    My error log (I deleted info that I believe to be private.

    File does not exist: public_html/robots.txt

    File does not exist: public_html/feed

    File does not exist: public_html/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://geekoftodd.com/

    File does not exist: public_html/members, referer: http://geekoftodd.com/members/

    File does not exist: public_html/favicon.ico, referer: http://geekoftodd.com/

    File does not exist: public_html/activity, referer: http://geekoftodd.com/

    I’m guessing that I need to move some buddypress files so hostgator can find them or is this like in certain programs where I have to locate them manually for them to be recognized? Thanks any help would be great.

    #77984
    linusf
    Participant

    @r-a-y
    I tried the solution presented in the ticket but with no luck, still counts removed users… I downloaded the file from https://trac.buddypress.org/changeset/2976.
    Is there something i´m missing here?

    #77979
    Jeff Sayre
    Participant

    As @r-a-y suggests, these look like spam accounts to me.

    #77974
    Josh
    Participant

    Ok, i now have a theme that was just a plain site theme, how would i make it into a bp theme? I’ve decided to use the theme i had before starting to use wp and bp, so i need to know how to make it into a wp/bp theme

    #77969
    Hugo Ashmore
    Participant

    Difficult to help further than saying validate your layout, it’s very badly mal formed. CSS is parsed and applied to the DOM if the DOM is broken then CSS can not be applied correctly or struggles to know where elements start and end. Lots of things can stall the correct construction of a complete page, and this will be different from browser to browser.

    You must work through the code identifying where things have broken and correcting them, only then can you be sure that you have a level playing field and that any remaining issues are not simply related to broken markup.

    Fyi a good place to start would be the fact that half the necessary head elements are halfway down the page inside the body element of the document, frankly it’s one of those times I would rather HTML had a stricter parsing engine rather than the abomination referred to as the Tag Soup Parser.

    #77968
    Anonymous User 96400
    Inactive

    Hey,

    I recently wrote a blog post about just that: http://shabushabu.eu/reordering-buddypress-group-tabs/

    I’ve done it for group tabs, but it works for any kind of tabs.

    ~Boris

    #77966
    Anonymous User 1502623
    Inactive

    No problem, my site is http://www.audioscribbler.co.uk

    I’m not surprised it’s a bit boggle, I kind of stumble through ‘coding’ at the best of times. Looks absolutely fine in all other browsers I’ve tried so far though.

    #77964

    In reply to: Avatar error

    Javier Arques
    Participant

    Hi, I´m having the same problem, here on buddypress.org and on my website. I´m working on WP3.0 + BP 1.2.3

    #77955
    paulhastings0
    Participant

    I’ve been studying the WP and BP Core structure and the Buddypress Like plugin files for the last several hours. I feel kind of stupid that this is all I can come up with for now. I know there’s a bunch wrong with it. but I have to start somewhere. Does this look like the right form?


    if (xprofile_avatar_uploaded == true) {

    function bp_new_avatar_uploaded() {
    echo "$user_id has updated their avatar";
    }
    add_action ('bp_activity_filter_options', 'bp_new_avatar_uploaded');

    }

    #77954
    Dee
    Participant

    The theme designer says, “Any theme including my BuddyPress theme cannot block or prevent access to pages/posts or group sites.” Is this true? If so, why is one of the first trouble-shooting steps to return to default BP theme? Why do BP and the plugins work with the default, but not the other theme?

    Mario
    Participant

    I have the same issue here. WP 2.9.1 with BuddyPress 1.2.3. It worked in the beginning, but yesterday it just stopped working. I added a few plugins from the BuddyPress extensions list, but the avatar panel doesn’t load even when I disable them.

    Should I uninstall all of the BP extensions in order to check whether this is going to work again?

    #77951
    motomac
    Participant

    @mercime, I can’t find these strings in default theme.

    zlamczyk
    Participant

    @twodeuces Please do update when BuddyPress Auto Join Group is working for WP single-user – this will save me many, many, many headaches! Thanks, in advance, to everyone that has contributed to the BuddyPress Auto Join Group.

    #77947

    In reply to: h-mag.com

    Javier Arques
    Participant

    I love h-mag website, congrats Simon!!! your web is the best example to show what can be done with buddypress

Viewing 25 results - 52,576 through 52,600 (of 69,016 total)
Skip to toolbar