Search Results for 'private'
-
AuthorSearch Results
-
November 28, 2009 at 4:31 am #57614
In reply to: And idea why I can\'t add friends?
David Lewis
ParticipantWhen asking for support
1. WPMU 2.8.6
2. Directory-based blogs
3. Installed in a sub-directory (until such time as I’m ready to flip the DNS switch)
4. Fresh Install of WPMU
5. N/A
6. BP 1.1.2
7. Fresh Install of BP
8. No plugins
9. Standard BP-Default theme.
10. No core file modifications.
11. No custom functions
12. Built-in install of BBPress
13. Getting this error in the log files:
Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary. Use ‘LogLevel debug’ to get a backtrace., referer: http://cl-t038-352cl.privatedns.com/public_html/satsangha.org/members/mandee/profile/
14. Hosting company is iWeb (dedicated server)
November 26, 2009 at 4:51 pm #57531Andy Peatling
KeymasterThat’s the one, if you turn that to private then it will stop showing in the stream.
November 26, 2009 at 4:03 pm #57521Andy Peatling
KeymasterYou could make the blog private?
November 26, 2009 at 6:39 am #57497In reply to: BP and BBPress issues.
tajulsharby
ParticipantI wish I could but unfortunately it will take some times for me and my guys to get other customized plugin to work with the new release as we all have been playing with the current version which we had going in to for quite some time.
Yeah, I know the latest version has the solution but I really hope for a technical solution (hacking the core files i guess?) which will solve the problem logically.
Anyway, the variable $topic which I debugged through in the bp-groups.php file was not holding any value which I might suspected to be the source of the problem:
function groups_new_group_forum_topic( $topic_title, $topic_text, $topic_tags, $forum_id ) {
global $group_obj, $bp;
if ( $topic = bp_forums_new_topic( $topic_title, $topic_text, $topic_tags, $forum_id ) ) {
bp_core_add_message( __( 'Topic posted successfully!', 'buddypress') );
/* Record in activity streams */
groups_record_activity( array( 'item_id' => $group_obj->id, 'component_name' => $bp->groups->slug, 'component_action' => 'new_forum_topic', 'is_private' => 0, 'secondary_item_id' => $topic['topic_id'] ) );
do_action( 'groups_new_forum_topic', $group_obj->id, $topic );
return $topic;
}
bp_core_add_message( __( 'There was an error posting that topic.', 'buddypress'), 'error' );
return false;
}Anyone have ideas what the $topic variable does?
November 21, 2009 at 9:24 pm #57183In reply to: Non buddypress plugins on plugin directory.
r-a-y
KeymasterJust tried out Mingle and I’m very impressed with it, especially at the fact that it’s such a young plugin.
Mingle’s activity stream and commenting is the way BuddyPress should have done it.
I’ve never understood why status updates and the wire are considered separate.
Mingle also has basic out-of-the-box privacy features so you can choose if your profile is visible to your friends only or to the public.
The author of the plugin is Blair Williams, who has also made the excellent Pretty Link plugin.
No sitewide activity stream, pretty permalink support for user profiles, private messages support, or groups, but that’s understandable.
So far I like Mingle because it’s simple and I hope it stays that way.
It’s not enough to jump ship from BP, but it’s definitely a plugin to keep an eye on.
November 19, 2009 at 5:31 pm #57029In reply to: Welcome pack plugin errors : missing argument
pangloss
Participant!!!!!
!!!!!!!!!New Instructions – DO NOT USE THE ABOVE INSTRUCTIONS, USE THESE. I left out a couple of things earlier and changed some other things.
!!!!!
!!!!!!!!!I was able to correct this problem with some mods to the welcome-pack.php file.
And I must preface this by saying that this fix is a hack. I am really not that familiar with the plugin and don’t know that my changes won’t result in some problem.
Basically, it appeared that none of the following functions were using the $meta value being passed in. So, I removed it. Here is the simple change. For each of these three, around lines 74, 102 and 132, respectively – change them from this:
function dp_welcomepack_welcomemessage( $user_id, $password, $meta )
function dp_welcomepack_defaultfriend( $user_id, $password, $meta )
function dp_welcomepack_defaultgroup( $user_id, $password, $meta )
to this:
function dp_welcomepack_welcomemessage( $user_id, $password )
function dp_welcomepack_defaultfriend( $user_id, $password )
function dp_welcomepack_defaultgroup( $user_id, $password )
NEW!!!: Change the following lines in “dp_welcomepack_onuserandblogregistration” from this:
—
dp_welcomepack_defaultfriend( $user_id, $password, $meta );
dp_welcomepack_defaultgroup( $user_id, $password, $meta );
dp_welcomepack_welcomemessage( $user_id, $password, $meta );
—
to this:
—
if(is_array($user_id)){
$user_id = implode($user_id);
}
dp_welcomepack_defaultfriend( $user_id, $password );
dp_welcomepack_defaultgroup( $user_id, $password );
dp_welcomepack_welcomemessage( $user_id, $password );
—
That will correct your undefined argument problems and should solve your array problem. Note!!! I am not entirely sure why the user_id value was being converted to an array in the first place, so, make these changes with that in mind. I don’t believe it will be a problem but it is possible that somehow you might get an actual array of more than one value and that would be an issue. One way to check this that I did not add would be to get an array count if it is an array and only set the value if it’s equal to 1.
If for some reason you are experiencing other problems, feel free to message me privately and I can investigate further.
November 13, 2009 at 8:03 pm #56666In reply to: Feature Request: Group Activity RSS Feed
Jeff Sayre
ParticipantI have thought about this as it pertains to the activity feed and the privacy component properly excludes a member’s activity stream for those activities they’ve indicated they wish to be made private.
November 12, 2009 at 7:03 pm #56577In reply to: Forum types: public, private, hidden
John James Jacoby
KeymasterIt isn’t possible without some kind of plugin, but it is possible with one.
You would want to take a look at the buddypress/bp-forums/ directory to see how forums are created within BuddyPress to begin with, and modify that existing code in your own plugin to modify that behavior and turn it into what you’re trying to accomplish.
The code is in there to do what you want, you just need to make it do it.
November 12, 2009 at 1:53 pm #56541In reply to: Private messages timezone problem
circuit
Participanti set my wordpress timezone to ‘Chicago’ to fix this. not ideal at all/ i’ve yet to see what effect this has on the rest of the site.
November 10, 2009 at 4:03 am #56337In reply to: Friends Function Has Disappeared…
Don Elliott
ParticipantThanks r-a-y, I did look into that – I have everything enabled except Blog Tracking and bbPress Forums. My only other options (all of which are enabled) are as follows:
Activity Streams
Groups
Private Messaging
Comment Wire
Extended Profiles
Status Updates
…..
November 9, 2009 at 9:41 pm #56312In reply to: Broken activity
arghagain
ParticipantOK, I saw this in bp-activity.php:
/* Drop the old sitewide and user activity tables */
$wpdb->query( “DROP TABLE IF EXISTS {$wpdb->base_prefix}bp_activity_user_activity” );
$wpdb->query( “DROP TABLE IF EXISTS {$wpdb->base_prefix}bp_activity_sitewide” );
And so I look in the db and saw there is no bp_activity_user_activity table, and there is no bp_activity_sitewide table. This means it’s a good thing since these got dropped.
Though I saw this
$sql[] = “CREATE TABLE {$bp->activity->table_name}
but to my lack of knowledge of programming, I see this and think it’s bp_activity_something (but no idea)…
Looked everywhere and I only saw this in db bp_activity_user_activity_cached. This table doesn’t look like it was created by
$sql[] = “CREATE TABLE {$bp->activity->table_name}, but I could be wrong because I looked at the part under $sql[] = “CREATE TABLE {$bp->activity ->table_name} and saw similar rows get created and these rows are in my bp_activity_user_activity_cached table.
For example, in bp-activity.php,
function bp_activity_install() {
global $wpdb, $bp;
if ( !empty($wpdb->charset) )
$charset_collate = “DEFAULT CHARACTER SET $wpdb->charset”;
$sql[] = “CREATE TABLE {$bp->activity->table_name} (
id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY,
user_id bigint(20) NOT NULL,
component_name varchar(75) NOT NULL,
component_action varchar(75) NOT NULL,
content longtext NOT NULL,
primary_link varchar(150) NOT NULL,
item_id varchar(75) NOT NULL,
secondary_item_id varchar(75) NOT NULL,
date_recorded datetime NOT NULL,
hide_sitewide bool DEFAULT 0,
KEY date_recorded (date_recorded),
KEY user_id (user_id),
KEY item_id (item_id),
KEY component_name (component_name)
) {$charset_collate};”;
require_once( ABSPATH . ‘wp-admin/upgrade-functions.php’ );
dbDelta($sql);
In my current db, table bp_activity_user_activity_cached has everything except hide_sitewide row. In my current db, table bp_activity_user_activity_cached has extra rows that function_bp_activity_install doesn’t have such as date_cached and is_private rows.
Any suggestion? What rows should I add or remove? Am I looking at the right stuff?
Looked like at the end of the function bp_activity_install(), it has require_once( ABSPATH . ‘wp-admin/upgrade-functions.php’ );
dbDelta($sql);
Maybe the upgrade-functions.php had not gone smoothly?
November 6, 2009 at 3:43 pm #56086In reply to: Private messages pagination not working
5283373
InactiveFor now, I patched the bp-messages-template.php file by removing pagination (by the way, there is no need for pagination, even with 100 messages, the page is fast).
November 6, 2009 at 3:43 pm #56085Jeff Sayre
ParticipantSome form of media manager/gallery is a future BuddyPress feature. Until that is made available, you will have to look to 3rd-party solutions.
Just be aware of the issue of licensing when using Kaltura. Although Kaltura.org is self-described as open source video, and in fact its component code is licensed under GPL3, when you use the hosted solution–that is you are not storing your users’ media on your own server but instead on a Kaltura Media Network server–then all of your users’ content is automatically made available under the Creative Commons 3.0 license. See this Kaltura forum thread:
What does this mean? Well, it means you better clearly state to all your members that anything they upload via your site will automatically get licensed under CC 3.0. This means it will be freely available to anyone else to see and to use as they see fit within the CC licensing specifications.
That may not seem like a big deal to you if you are a fan of CC, but you should not assume that all your members will think the same way or necessarily want their content to be made available for free use.
Thankfully, there is a solution. If your using the self-hosted version of Kaltura.org–Kaltura Community Edition (CE)–then you can set the licensing rights for all member-submitted content. This means you can effectively control the privacy of your members’ content if that is important to you, your site, and your members.
If you choose to use Kaltura CE for your site, then you will need to make sure that you have sufficient storage and bandwidth to meet the needs of your site. Also, I have no idea of what kind of tech support Kaltura offers users of the CE version.
Finally, Kaltura is a for-profit company who is freely offering an open source media hosting solution via their kaltura.org site. They do offer premium services as well. So, if you have the budget, you can purchase a premium account to make all your users’ content private. At least that is what was indicated in the thread response in the first link above. You can visit http://corp.kaltura.com/solutions/video_solution for more information.
Note: look at the footer on the above Kaltura link to see how they handle the CC issue. I would argue that you would also want to make the CC issue very clear in any TOS and actually right under any media “Upload” link.
November 6, 2009 at 12:24 am #56031In reply to: New Plugin – BuddyPress Links – Beta Support
stwc
ParticipantI just came to your profile to request friending, and you’d sent one to me already!
For some reason Private Messaging seems to be broken here at the moment.One other thing I just noticed — I don’t see a Links filter button on my Sitewide Activity widget, but there’s one on your site… Is there a config page I missed somewhere or maybe a small bug?
November 4, 2009 at 11:17 am #55862In reply to: Who wants a media plugin for BP
gpo1
ParticipantI’ve got some info which I sent to the developers about this media headache project !
Here’s the reply..
” You can use BuddyPress component with Kaltura CE with some minor changes whose documentation we will publish soon on our blog – wpveda.com
About adding video/images/audio related actions to a user activity stream, that feature is on the card but it will take 4-5 months. You can get it developed by paying us privately or fund development of this open-source addon publicly. We will soon publish list of donors with their sites on the project page.
Do let me know if there is anything I can help you with. “
What’s is the best method of funding this project or shall we all contact the developer?
November 4, 2009 at 8:51 am #55860In reply to: New members & new blogs don´t show
eliwagar
ParticipantOh, I got it…the blogs have been set to private on default…fixed that now

Thanks a lot anyway…sometimes it helps just to pose the question somewhere
November 4, 2009 at 1:18 am #55846In reply to: buddpress.org messages broke
abcde666
Participanthey my friends, I am not able to send a Private-Mail via this website buddypress.org , even not to my BP-friends….. could you please fix this ?
I am using the latest FireFox-browser, but I am quite sure this is not related to the browser being used. The PM-system has worked fine previously, something must have happened in the meantime……
Thanx
October 30, 2009 at 1:53 pm #55475In reply to: buddpress.org messages broke
Andy Peatling
KeymasterPrivate messages?
October 30, 2009 at 3:48 am #55451In reply to: Site Wide Activity widget
John James Jacoby
KeymasterAt the moment the easiest way to do this is to mark the blog as private. The adverse effect to this is that blog doesn’t show up in search engine results or anywhere else in your BuddyPress installation either.
Check the trac and see if there’s an enhancement ticket for this yet. If not, let us know this is something you’re interested in and maybe it will make it into a future version.
October 29, 2009 at 1:09 pm #55399In reply to: BuddyPress Privacy Component: An Update
Jeff Sayre
ParticipantPlease remember that based on the BuddyPress roadmap, some form of a privacy component will be integrated into Core for v1.2.
But, before that comes out, there will be a public beta of my Privacy Component. I have talked with Andy and he said to proceed with the testing. So, right now, the alpha version of my component is in a very limited-release private alpha. I am almost ready to release the alpha 2 version which will also be a private release.
Once the beta version is ready (which I’m now estimating to be around December 1st), it will be uploaded to the WP Plugin Repository and available for everyone to test. Please remember that it will still be a pre-release version which means that it should not be used in a production environment.
Of course, as I’ve said before, even with all of this testing, there is still no guarantee that my Privacy Component will become the de facto core privacy component. Only time, and your feedback, will tell.
October 28, 2009 at 3:34 pm #55341In reply to: BuddyPress Privacy Component: An Update
Damon Cook
ParticipantI just found this post, because I finally hit the wall with my recent implementation. Users are going to want their stuff to be private. I can’t wait to see what comes of this AC. I would be happy to test Alpha releases.
I also agree that the Privacy menu should be located in BP Settings area.
October 27, 2009 at 2:50 pm #55271In reply to: autocomplete not functioning when composing message
bgilbreath
ParticipantHello all,
So I figured out what was breaking my autocomplete.
I have two blogs set up on mu using virtual sub-directories instead of subdomains.
The first blog is on the root using the default theme and acts as an outside blog (blog id=1) and the buddypress theme is on another blog for a private area (blog id=2). By doing this, I can have 1 wp-admin with a public and private area.
However, by changing the blog id in the bp-core file from 1 to 2 on line 20 for buddypress, it breaks the autocomplete ; but everything else works fine. i believe this is a bug …but if anyone has any suggestions on how to fix this please let me know.
October 25, 2009 at 10:15 pm #55173In reply to: BuddyPress Privacy Component: An Update
John James Jacoby
KeymasterThe privacy component is so good, that it’s set to “private” in the core and you can’t even find it!
October 25, 2009 at 4:23 pm #55153In reply to: BuddyPress Privacy Component: An Update
Paul Wong-Gibbs
KeymasterJeff’s component is still under some stage of review and AFAIK hasn’t been released for private testing yet. There’s no promise that Jeff’s code will get integrated into the BP Core, that decision is Andy Peatling’s.
I’d assume the plan is to get a plugin out that is compatible with BP 1.1 as BP 1.2 isn’t likely to be released until January.
October 22, 2009 at 11:06 pm #55035In reply to: Make Subdomain Private?
Jeff Sayre
ParticipantHaha!
By saying, “This thread is pretty old”, I meant the thread to which I was about to provide the link. I did not mean this thread as in this actual thread!
-
AuthorSearch Results