Search Results for 'private'
-
AuthorSearch Results
-
January 14, 2009 at 9:11 pm #36299
In reply to: private groups not visible at all
nicolagrecoParticipantGood idea for new plugins..
January 14, 2009 at 7:27 pm #36297In reply to: private groups not visible at all
Andy PeatlingKeymasterUse a hidden group. Site admins can invite but not add without acceptance. You could write a plugin to do that though.
January 13, 2009 at 3:58 pm #36224In reply to: Personal Profile Forum
fishbowl81ParticipantLets get the general public forum working, before we get greedy. I do like the idea, but for the general good I think you could just form your own cult group, make it private and be good.
Please post any progress you make on the privatization of group forums, I would like to do something so I don’t have to maintain 2 installs of bbpress.
Thanks,
Brad
January 11, 2009 at 11:43 pm #36127Burt AdsitParticipantI thought about doing the same thing. I setup 2 instances of bbpress. One for groups and one for ‘the community’. The groups forums were hidden. I didn’t like it too much. I wanted the public groups to be public forums but read only until users joined a group. I also wanted the private and hidden groups to have hidden forums.
See this thread: https://buddypress.org/forums/topic.php?id=696
January 11, 2009 at 6:03 pm #36106fishbowl81ParticipantHopefully this will make sense
I have 4 directories, which I download the svn update to, and then copy them over to the live site:
/bbpresssvn
/buddypresssvn
/wordpresssvn
/privatedevsvn
By logging into the command line, I can do this
svn up
inside each of those 4 folders and it will update them to the newest trunk release. Then I run this command (or similar for buddypress)
cp -R * ../beta
and copy the files to the dev server. So far this has worked really well.
The private dev svn is where I upload my own plugins and themes I’m doing development on. This method is extremely fast as I never have to ftp any files between the internet, my laptop and back up to the web server. It does require command line access and knowledge of svn.
Hope this helps,
Brad
January 8, 2009 at 11:03 am #35886In reply to: Hey Andy, this time about forums
Burt AdsitParticipantwardeh, sorry it took so long to get back to you. Been busy. From what I gather all wpmu and bp functions are available. However none of the actions and filters on the mu side are in effect. I’m still not sure what that means. Just something I’ve read.
I don’t know if this deep integration is even what I want. I know it’s problematic at the moment. I think it’s going to take some time for sambauers and the gurus at bbpress to work out the kinks. I generate enough problems on my own. I’d like to keep the problems to *me*. I have a chance of fixing those.
I do know that xmlrpc works *now*. That’s what bp is using for the bp-forums component. Loading all of mu just to get at a few functions is kinda overkill. I think what I’m gonna do is create a couple of more xmlrpc methods on the wpmu side that will be called from bbpress. Such as:
‘get_all_group_forums’ – gets all bp groups that have forums and the forum id so that read-only-forums and hidden-forums can be automagicly configured. My plan is to configure all public group forums read-only and private and hidden groups hidden-forums.
‘get_all_group_members’ – Foreach group with forums get the members of that group and automagicly configure an override for each group member in that forum.
So from the bbpress side to configure read-only and hidden-forums, we get all the groups that have forums and then all the members of those groups and make the two bbpress plugins work with that info. Should be enough.
Using xmlrpc is better than loading all of wpmu just to do those two things. Especially since this deep integration is still flaky.
xmlrpc has added benefits. It’s way cooler. My forums don’t have to reside on the same server as my bp/wpmu install. I keep hearing rumblings, rumorings and hintings about xmlrpc. It’s kinda like sleeping and lurking. Getting ready for something. Comments by wpmu gurus about xmlrpc privately, Andy relying on it for forums. Something’s brewing.
RDGMemberI have exactly the same issue here. Don’t know why, but at my test setup (http://www.dutch-dig.com) the blog entries at http://robert.dutch-dig.com are not shown in robert’s user profile. At first the blog was set to private. I’ve changed that to public and still roberts blog is not shown.
January 7, 2009 at 5:05 pm #35820In reply to: wp-super-cache strategy
Trent AdamsParticipantI plan on hacking up something that doesn’t cache private blogs as well since right now wp-super-cache will cache private blogs and then show them from cache to the public. I just have an array in my wp-config.php right now for private blogs, but that isn’t a long-term solution. It would be nice to cache members and groups though.
January 7, 2009 at 3:30 am #35783fishbowl81ParticipantWell, as the developer for http://gorgeousgamers.com/beta/ I figured I should answer this question.
I have 2 instances running of bbpress, 1 is .com/beta/forum/ and the other is in a different location. Currently it is not safe to combine them, as private groups would be visible to all members, which is still an issue but would be harder to find these hidden forums.
The menu bar, which lists the general forum is actually as simple as uncommenting the code in the header.php file in home theme.
I’m still not sure if I should theme bbpress to match the site, or modify a copy of the groups forum tools to allow general discussion. This wouldn’t be a quick development, but would be easier down the road as the theme develops.
Thanks,
Brad
January 5, 2009 at 8:36 am #35623In reply to: Open members list in group page
yuParticipant“i want a list of all members in all groups for ALL users (registered/non registered).” – i mean everybody should get a list of group members in group home. whenever group is public or private. as you can see that’s allready done. i’ve just update two numbers in function get_random_members() in bp-groups/bp-groups-clases. that’s all i had done.
January 4, 2009 at 9:45 pm #35580In reply to: Hey Andy, this time about forums
Huda ToriqMemberAnother alternative instead of separating WPMU & bbpress capabilities: you can assign specific user meta for each users. Say, the meta value is an array containing all forum ID that specific user belongs to. Of course you need to write some hack to the bbPress side as well. That way you can share both public & private forums in a single bbpress install.
Just an idea. I haven’t look into the code too
January 2, 2009 at 2:33 pm #35459In reply to: Plugin: AutoSuggest For Search Boxes
David BissetParticipantThanks, this is actually in private testing as we speak. Hoping to release this any day now. I got it working in the top search box as well.
December 29, 2008 at 8:45 pm #35291In reply to: Error when trying to create a group
Trent AdamsParticipantDo you have phpMyAdmin running? Can you go to it or whatever Database admin program that your host gives you and then run the following command on your database?
CREATE TABLE wp_user_3_activity (
id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
item_id int(11) NOT NULL,
secondary_item_id int(11),
user_id int(11) NOT NULL,
component_name varchar(75) NOT NULL,
component_action varchar(75) NOT NULL,
date_recorded datetime NOT NULL,
is_private tinyint(1) NOT NULL,
KEY item_id (item_id),
KEY user_id (user_id),
KEY is_private (is_private),
KEY component_name (component_name)
)See if it will actually create the tables manually?
December 29, 2008 at 8:36 pm #35289In reply to: Require Login
bluoceanMemberAlrighteethen, I’ve given up on a reg form on a custom login page.
Even simpler, from a code standpoint is a message on the login page that says “This is a private site. To join, please email the site administrator.” with a spam-proof mailto link. I can then manually sign them up. Pretty clunky, but it sounds like BP will be better at this kind of thing someday soon.
December 29, 2008 at 7:04 pm #35278In reply to: Error when trying to create a group
oceandoctorMemberIs this creating the problem: “DEFAULT CHARACTER SET utf8” ??
From the Apache error log, this is the same syntax error I saw earlier when BP was trying to create tables (see earlier posts):
[suexec 11180] Chdir to /kunden/homepages/14/d123456789/htdocs/exploreouroceans
[suexec 11180] Executing PHP4 /usr/lib/cgi-bin/php4 /kunden/homepages/14/d123456789/htdocs/exploreouroceans/index.php
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 ‘DEFAULT CHARACTER SET utf8’ at line 14 for query CREATE TABLE wp_user_3_activity (
id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
item_id int(11) NOT NULL,
secondary_item_id int(11),
user_id int(11) NOT NULL,
component_name varchar(75) NOT NULL,
component_action varchar(75) NOT NULL,
date_recorded datetime NOT NULL,
is_private tinyint(1) NOT NULL,
KEY item_id (item_id),
KEY user_id (user_id),
KEY is_private (is_private),
KEY component_name (component_name)
) DEFAULT CHARACTER SET utf8; made by dbdelta
December 29, 2008 at 2:59 pm #35252In reply to: Require Login
WardeeParticipantHere is the plugin to moderate new blogs: http://wpmudev.org/project/Moderate-New-Blogs
But I don’t believe there is one to moderate new users. There is a hack for WPMU that does not work for BP because BP overrides WPMUs registration/activation process. I am working on trying to do the hack to BP… but it is not working so far.
I would like to have a private network also. I don’t want the main site to be private, but I want all the members, groups (if I use them), forums, wire activity, etc. to be private.
Regarding the blog privacy, if you set the user blogs to anything but option #1 (google-able), then the blogs don’t show up in BP “blogs” list. I think there needs to be something in the middle here — ie. no search engines can find the blogs, yet members can view the blog lists and browse the blogs.
December 29, 2008 at 2:22 am #35234In reply to: Require Login
bluoceanMemberThis is exactly what I’m trying to do – create a private, members-only site that could be either invite-only or have the registrants moderated by the admin. I would think this scenario would be pretty common with many groups – companies, orgs etc.
I’ve spent the past day and a half combing this forum and others looking for the solution. FYI, I’m not a PHP programmer, but I can copy and paste code when necessary. The closest I’ve gotten is with 2 methods:
– the plugin that Trent posted that PW-protects the member pages. It does allow new registrations but it doesn’t protect the home page or the groups.
– the More-Privacy-Options plugin mentioned above, with the “Site can be viewed by registered users only..” option turned on. The problem I’m having with this one is there’s nowhere for new people to apply/register. So if you’re a non-member and you go to any page (including the registration page) you get the login screen, which doesn’t have a Register link. I’m guessing there must be a workaround for this, but haven’t been able to find it yet.
Which brings me to another problem that I’m having, which is how to invite non-members into the site. I’ve got the “Invite Friends” plugin installed and it seems to work ok, but it’s only for the administrator, which is ok for now, but eventually it would be good to be able to allow site members to invite new people in. I see this as an option in the settings, and a link in the Friends sidebar.
Using a common example, Facebook is pretty much doing all of this now. So non-members arrive at the base URL to a landing page with an intro message, where they can register for membership. Plus existing members can invite (via a link in the friends area) non-members to join up.
December 28, 2008 at 8:25 am #35174thelawParticipantThe WP bridge does not work with MU? It thought it did. I plan on developing that privately if it does not exist, at the very worst, a synchronization of login information.
December 22, 2008 at 6:50 pm #34837In reply to: Why is Mine Working Different Than the Demo?
Andy PeatlingKeymastermake sure the blogs are set as public, not private.
December 21, 2008 at 1:58 am #34710In reply to: Making BP semi-private
nicolagrecoParticipanti think Trent solution is good but maybe i think in this case doing a plugin is simplier than it :S.. for every update (if you use svn for example), you’ve to reedit the code..
adding a function in your plugin that define if current visitor is logged in ( look at is_admin() for wp and some other bp conditional tags) and define if the visitor can visit pages or not..
i think it’s possible and easy..
December 21, 2008 at 1:49 am #34706In reply to: Making BP semi-private
WardeeParticipantThank you, Trent. I will explore what you’ve said.
I was working with the More Privacy Options plugin but it sent the main blog to unviewable. Perhaps I missed a setting though.
You confirmed one of my other questions — that no search engine blogs aren’t supposed to show in BP listings.
December 21, 2008 at 1:25 am #34702In reply to: Moderate Users and New Blogs
Trent AdamsParticipantPersonally, I have a combination in effect. I use the plugin wp-hashcash and that helps stop “robot” registrations nicely. For restriction, I personally use Dsader’s Admin Approve plugin which is wonderful as nothing is activity for blogs until the admin approves. Doesn’t help with user registration “per-se” so I also use Signup Question on my more private install as well. I just change it to a normal question with a normal answer to only get people I want registering. It can be altered to almost having an “invite” code if you give the answer to people you want to register!
Getting a bit off topic, so I will stop there.
Trent
December 21, 2008 at 1:16 am #34698In reply to: Making BP semi-private
Trent AdamsParticipantWell, you can look at this post for a quick hack to only allow members to see anything on member profiles, groups, etc. That post has a hack that applies to the /wp-content/member-themes/buddypress-member/ theme. The buddypress-home theme in /wp-content/themes/buddypress-home/ doesn’t get the hack
You could apply it to buddypress-home theme in certain places if you don’t even want them to be able to search the blogs, groups, members, etc. but that would be a little harder to follow.
Then, on private blogs, I just use more privacy options so that private and no search engine blogs don’t show in any listings around the site. You can hack the code to actually list them in buddypress if you want, but default pattern is to not show them.
So basically, I would set the privacy for all blogs you don’t want showing and leave the main blog open. It is done with that plugin on a blog by blog basis.
Once Andy puts more of this into the core, it will be much easier, but for now we have to “hack” around a bit
Trent
December 18, 2008 at 1:57 am #34558In reply to: messages not working
mfgmkParticipantOy, just upgraded to 1.0b1 and still have the same problem with messages not working. Here’s what I did for the upgrade:
trial 1) overwrote all plugins with the latest releases (combo download), tested site — messaging didn’t work;
trial 2) deleted all mu-plugins, re-downloaded 1.0b1 (in case the d/l botched the first time), uploaded everything it in their proper locations, tested site — messaging still didn’t work.
I tested private messaging by doing the following:
trial 1) My Account >> Messages >> Compose >> write a message >> Send — pressing Send cleared all fields (Send To, Subject, Message);
trial 2) My Account >> Friends >> My Friends >> click on friend’s profile >> Send Message >> write a message >> Send — pressing Send cleared all fields again;
trial 3) do the same stuff as trial 2 but with a different friend — still the same problem.
Here’s the funny part, when I checked off “This is a notice to all users” the Send button did work. One other piece of information that might help troubleshoot this is that I have this text “(Use username – autocomplete coming soon)” next to the Send To label.
December 17, 2008 at 1:30 am #34483In reply to: messages not working
mfgmkParticipantanybody having any problems with the 1.0 beta version of bp-messages? i’ve upgraded all plugins and now private messaging doesn’t work anymore. once you hit send, it redirects onto itself and nothing is stored in the “sent messages” area. auto-complete also isn’t showing up, but maybe that’s reserved for a different release.
-
AuthorSearch Results