Search Results for 'buddypress'
-
AuthorSearch Results
-
March 19, 2010 at 4:15 pm #69255
In reply to: New version of Forum Attachments for BuddyPress
chembro303
MemberWP 2.9.2, BP 1.2.2.1
Installed and tested upload of a small JPEG… it just shows “failed” and a little x with the filename.
I tried for a little while to troubleshoot but I’m not sure what should happen if it’s working so I’m not sure where to look… i.e. I am not sure what I should be looking for. Database entry? File uploaded to certain place on my server?
March 19, 2010 at 3:39 pm #69250In reply to: BuddyPress Pages Not Viewing
holymk2
Membermine is running on ubuntu.
March 19, 2010 at 3:17 pm #69246In reply to: Difference Between Using WordPress and WordPress MU
etuportal
MemberYou should wordpress mu and buddypress because you want to social network (supports buddypress) and blog for every user (supports wordpress mu).
March 19, 2010 at 2:26 pm #69232peterverkooijen
ParticipantI’m trying to add the Facebook URL to a custom xprofile field. Adding this query to _process_login.php, like I did here with other queries, doesn’t work:
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->bp_xprofile_data} SET value = %s WHERE ID = %d AND field_id=3", $fbuser['profile_url'], $user_login_id ) );It does get stored in wp_users, but I need to figure out how to connect this plugin to xprofile anyway.
March 19, 2010 at 2:16 pm #69229Gianfranco
ParticipantOk, this worked for me (I hope it fixes evrybody else):
Go to Settings -> Miscellaneous Settings
Set “Store uploads in this folder” to “wp-content/uploads”.
Set “Full URL path to files” to the REAL FULL PATH of your uploads.
Then change bp-core-avatars.php line 389:
Replace:
if ( !$path = get_option( ‘upload_path’ ) )
$path = WP_CONTENT_DIR . ‘/uploads’;
With:
if ( !$path = get_option( ‘upload_path’ ) )
$path = WP_CONTENT_DIR . ‘/uploads’;
else $path = ABSPATH . $path;
It fixes the problem.
Source: https://buddypress.org/forums/topic/avatar-upload-issues/page/2
March 19, 2010 at 2:03 pm #69228In reply to: bpPicture and buddyPress 1.2RC3-problem
ecurtain
ParticipantYep. I just received responses from Brajesh and a couple of users, who say BP-Gallery does work on standard WP.
March 19, 2010 at 1:58 pm #69225In reply to: BP Album+ || New Features Requests and Discussion
foxly
Participant@pcwriter – In short: no, not with the default BP template. Our plugin gets loaded “inside” the BuddyPress template, so it is constrained by how that template is laid out. If you’re using a custom template though, then you can put the output from the plugin anywhere you want on the screen.
@Gpo1 – Adding media attachments in comments as implemented on FaceBook is a major project. It requires a substantial amount of JavaScript coding and quite a few new functions in the plugin backend. We’ll get to it when we can, or perhaps once we release version 0.1.7 maybe somebody might like to *extend* our plugin to add this feature …

^F^
March 19, 2010 at 1:53 pm #69224In reply to: Editing Members Profile
chopo87
ParticipantI relay need the functionality to allow users to upload documents to their profile to. I’ve been-trying to modify the Group Documents plugging, but unfortunately I don’t have enough wordpress/buddypress/php knowlage to do so. Is their a way I can hire someone to write the plugin for me?
March 19, 2010 at 1:47 pm #69221In reply to: new version of BuddyPress Rate Forum Posts
mrjarbenne
Participant@dwenaus. 1.2.1 fixed it up for me. Thanks for the quick support.
March 19, 2010 at 1:32 pm #69218In reply to: BuddyPress Pages Not Viewing
Paul Wong-Gibbs
KeymasterAre both of you running servers with IIS? If so, it’s a server issue and there are workarounds/fixes: google for “wordpress index.php IIS”
March 19, 2010 at 1:17 pm #69213In reply to: BuddyPress Pages Not Viewing
holymk2
MemberThat happens also to me. Please help. thx
March 19, 2010 at 12:46 pm #69210In reply to: BuddyPress Pages Not Viewing
mikekist
MemberI seem to be having the same problem and not sure how to fix it. I have the latest wordpress and buddypress. WordPress seems to be working just fine until I activate buddypress plugin.
The admin says that you must change permalinks to something other than default so I tried all of the other choices to no avail. I also activated the default buddypress theme but I get links like:
http://buddypress.kistenterprises.com/members/admin/profile/public/
leading to 404 errors when I have the permalink selected that looks like:
http://buddypress.kistenterprises.com/index.php/archives/123
Obviously I need to set up a custom permalink but not sure how to structure it.
Any Help? Thanks.
March 19, 2010 at 11:54 am #69204In reply to: [New Plugin] BuddyPress Group Forum Extras
bOingball
MemberSigning in with my correct account (banfi is my surname
)@etiviti,
Cheers!
I’ll release the plugin tomorrow when I’m at home and have the SVN access to upload to the wordpress site.
The only thing I’ve not added is ordered and unordered lists. so when enabling the buttons for the other you may want to take these out until at some point I can get that working?

it supports everything else though as well as the color tag.
Cheers
bOing
March 19, 2010 at 11:29 am #69200In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
ParticipantI’m releasing an update to the the bbcode plugin – it’s not online yet but coming soon : https://wordpress.org/extend/plugins/boingball-bbcode/
awesome! i’ll update my plugin to refer to this one – and an option to output the bbcode buttons too
mean I have to do …
don’t forget to remove the closing endif statement.
March 19, 2010 at 9:43 am #69196bobin1983
Participant@justin_k I want to add the button to the WP login rather than buddypress sidebar – how do I do that?
Cheers
March 19, 2010 at 8:04 am #69188Mariusooms
ParticipantThis is the code for pagination:
<div class="pagination">
<div class="pag-count"><?php bp_activity_pagination_count() ?></div>
<div class="pagination-links"><?php bp_activity_pagination_links() ?></div>
</div>It is already on that page, but it wrapped in
<noscript>tags. Just remove those tags and should be good for the top of the page. Just repeat that code somewhere at the bottom, preferably just before the<?php else : ?>statement.To remove to “load More” tab remove or uncomment the following code on that same template:
<?php if ( bp_get_activity_count() == bp_get_activity_per_page() ) : ?>
<li class="load-more">
<a href="#more"><?php _e( 'Load More', 'buddypress' ) ?></a> Â <span class="ajax-loader"></span>
</li>
<?php endif; ?>Also look at this codex page, it could be helpful to show you a number of things:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
March 19, 2010 at 7:56 am #69185JK
ParticipantBy the way, when you installed it, did you have to change any settings? Specifically, was “Disable Buddypress Filters” de-selected by default? It should be checked by default on WordPress (it is), and un-checked by default on BuddyPress.
March 19, 2010 at 7:31 am #69182idotter
Participant
March 19, 2010 at 5:53 am #69177r-a-y
KeymasterIf you just care about your BP data, export all database tables with “wp_bp_” prefixed in them, as well as the “wp_users” and”wp_usermeta” tables.
Preferably try this on a new install of standard WP with BP installed on a local testbox.
Then try importing the tables you exported above into your testbox’s db.
Disclaimer: This is all theoretical!
There might be a few things you need to manually change in the SQL export, but I’m not sure at this point.
Also, hope you’re not using user blogs on WPMU!
March 19, 2010 at 5:41 am #69176In reply to: bpPicture and buddyPress 1.2RC3-problem
r-a-y
KeymasterYou might want to ping Brajesh and ask him if BP-Gallery really only supports WPMU.
Would be surprised if it didn’t support standard WP.
Glad that more alternatives are popping up though!
March 19, 2010 at 5:36 am #69174In reply to: bpPicture and buddyPress 1.2RC3-problem
ecurtain
ParticipantYou might also consider BP Album+ at http://flweb.it/buddypress-album-plus/
It’s free and worked fine with my single user BuddyPress installation. Users only have one gallery however.
Buddydev’s BP-Gallery plugin supports multiple user galleries, but requires WP-MU.
It’s a tough decision for me – limit users to a single gallery, or upgrade the site to WP-MU?
March 19, 2010 at 5:36 am #69173In reply to: Video Embed throughout BP
r-a-y
KeymasteroEmbed for BuddyPress – works with activity streams and forum posts
https://wordpress.org/extend/plugins/oembed-for-buddypress/
Only works with BP 1.2.
March 19, 2010 at 5:28 am #69172In reply to: BuddyPress Maps
Anton
ParticipantI’m running bp 1.2.2.1 and wp single 2.9.2
I still get this error on my profile when I try to set a marker: Error occured while trying to save marker information
March 19, 2010 at 4:55 am #69169In reply to: new version of BuddyPress Rate Forum Posts
modemlooper
ModeratorCan you please wrap the profile header output in a div with a class? I keep doing this and it gets knocked off on every update.
Thanks!
March 19, 2010 at 3:02 am #69153r-a-y
Keymaster -
AuthorSearch Results