Search Results for 'buddypress'
-
AuthorSearch Results
-
May 13, 2010 at 4:13 pm #78012
John James Jacoby
KeymasterPart 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.
May 13, 2010 at 4:08 pm #78010In reply to: buddypress not translating.
John James Jacoby
KeymasterYou’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.
May 13, 2010 at 4:03 pm #78009In reply to: buddypress-skeleton-component – saving to database?
thekmen
ParticipantThanks @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…
May 13, 2010 at 3:20 pm #78002skipper chong warson
ParticipantThis is so strange, I think I must be doing something wrong, no one else seems to have this problem. Google would tell me so.
May 13, 2010 at 3:19 pm #78001skipper chong warson
ParticipantNo 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?
May 13, 2010 at 2:56 pm #77999In reply to: buddypress not translating.
Jeff Sayre
ParticipantYou must also set your default language in WPMU’s wp-config.php file. Look for the following line in that file:
define ('WPLANG', '');
May 13, 2010 at 2:41 pm #77996BOW
ParticipantMay 13, 2010 at 2:09 pm #77989In reply to: buddypress-skeleton-component – saving to database?
Jeff Sayre
ParticipantIt 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.
May 13, 2010 at 1:45 pm #77988jhull
MemberHas 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?May 13, 2010 at 1:22 pm #77987In reply to: buddypress-skeleton-component – saving to database?
thekmen
ParticipantThanks @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?May 13, 2010 at 1:09 pm #77986In reply to: BP Doesnt Show Garvatar or Avatar?
DJ Rg
ParticipantHello
Is this gonna fixed in BuddyPress?
May 13, 2010 at 1:08 pm #77985geekoftodd
MemberMy 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.
May 13, 2010 at 1:07 pm #77984In reply to: Incorrect friend count after user is deleted
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?May 13, 2010 at 12:53 pm #77979In reply to: some members’ profile data display incorrectly!
Jeff Sayre
ParticipantAs @r-a-y suggests, these look like spam accounts to me.
May 13, 2010 at 12:24 pm #77974In reply to: Regular wp theme to a buddypress theme?
Josh
ParticipantOk, 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
May 13, 2010 at 11:19 am #77969In reply to: Buddypress/Site broken in internet explorer 7
Hugo Ashmore
ParticipantDifficult 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.
May 13, 2010 at 11:08 am #77968In reply to: How to change the order of the tabs
Anonymous User 96400
InactiveHey,
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
May 13, 2010 at 10:42 am #77966In reply to: Buddypress/Site broken in internet explorer 7
Anonymous User 1502623
InactiveNo 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.
May 13, 2010 at 10:34 am #77964In reply to: Avatar error
Javier Arques
ParticipantHi, I´m having the same problem, here on buddypress.org and on my website. I´m working on WP3.0 + BP 1.2.3
May 13, 2010 at 9:02 am #77955In reply to: Activity Stream – “XYZ User has a new avatar”
paulhastings0
ParticipantI’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');}
May 13, 2010 at 8:26 am #77954In reply to: Here’s The Group Problem – Help Pls!
Dee
ParticipantThe 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?
May 13, 2010 at 8:25 am #77952Mario
ParticipantI 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?
May 13, 2010 at 8:17 am #77951In reply to: Different font sizes for various activity items
May 13, 2010 at 8:17 am #77949zlamczyk
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.
Javier Arques
ParticipantI love h-mag website, congrats Simon!!! your web is the best example to show what can be done with buddypress
-
AuthorSearch Results