Search Results for 'private'
-
AuthorSearch Results
-
December 15, 2008 at 6:38 pm #34420
In reply to: mu+bbpress on nginx
iprashantMemberDear Friends,
I have found solution to configure nginx in root with sub domain feature. enjoy.
server {
listen 80;
server_name domain.com;
#error log
access_log /home/public_html/private/log/access.log;
error_log /home/public_html/private/log/error.log;
location ~* ^.+.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$
{
root /home/public_html/folder;
rewrite ^/.*(/wp-.*/.*.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js))$ $1 last;
rewrite ^.*/files/(.*(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js))$ /wp-content/blogs.php?file=$1 last;
expires 30d;
break;
}
location / {
root /home/public_html/folder;
index index.php index.html;
if (!-e $request_filename) {
rewrite ^.+/?(/wp-.*) $1 last;
rewrite ^.+/?(/.*.php)$ $1 last;
rewrite ^(.+)$ /index.php?q=$1 last;
}
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /usr/local/nginx/conf/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /home/public_html/folder/$fastcgi_script_name;
include /usr/local/nginx/conf/fastcgi_params;
}
}
server {
server_name http://www.domain.com;
rewrite ^/(.*) http://domain.com/$1 permanent;
}
December 15, 2008 at 4:06 am #34394In reply to: Registration?
WardeeParticipantYes. Duh. That’s just what I did. So sorry to bother you with my learning-curve mistakes.
Could I ask you another question, though? I’ve looked at your site. You have the MU privacy plugin working, yes? How do you make your front page visible and yet keep the rest of your network private?
Thanks, Trent.
December 15, 2008 at 3:48 am #34393In reply to: activation email / new users
Andy PeatlingKeymasterThere was a bug with blog signups where they would be private not public. This has been fixed today. That would explain your second problem. The first I’m not sure, has anyone else experienced this?
December 12, 2008 at 4:32 pm #34286Burt AdsitParticipant@punkky Well, I think you’ll still need to go in the existing blogs and make them public. The ‘privateness’ of your blogs is determined, from bp’s perspective in this particular case, by the Settings > Privacy toggle. I think, if I remember correctly, if this is Friday. That would be the only place.
I gotta go fix my group forums. I’m just avoiding the issue by talking on the forums. If I play around in the forums long enough my site will see the error of it’s ways and fix itself right?
December 12, 2008 at 12:18 pm #34273punkkyMemberI have the same problem. I just updated my Buddypress with r658 and the problem is still there.
How to make a blog to be a public blog? (remove the private attribute of a blog)
December 10, 2008 at 6:03 pm #34219Burt AdsitParticipantI remember reading the SVN logs about the ‘private blogs’ issue. That has been fixed. r633+ should be ok now.
December 10, 2008 at 5:57 pm #34216bearuserMemberi believe that this has been answered several times.
However, it is probably because those blogs are private.
Buddypress currently creates blogs as private………last check with apeatling…….it is a bug that should be resolved…….sometime.
December 3, 2008 at 9:20 am #34110In reply to: Privacy Settings not working
gpo1ParticipantWould this issues be address on beta version? also how do you make the members & groups private from unsigned users viewing members profile etc?
December 2, 2008 at 2:36 am #34091In reply to: No Blogs, No News, No Members, No Groups
bearuserMemberaddendum:
I guess blogs is now kind of working. They still don’t show up on the “blog” page, but if I filter out “T” test blog shows up.
Also, blogs are still be created as private after BP install.
November 9, 2008 at 2:18 pm #33638In reply to: Private Messaging Issues
Andy PeatlingKeymasterCan you post a ticket at: https://trac.buddypress.org/newticket
I’ve noticed this too – I made some core changes recently that have affected some areas of messaging.
October 19, 2008 at 1:08 am #33384In reply to: What to keep in mind for current WPsite?
Phlux0rParticipant@owe, BuddyPress only works with WP Mu. If you want to use the normal WP, then you’re better off to find some plugins that will give you the functionality you want. There is an avatar plugin for WP as well as a private messaging one. There may be a friends one too, I can’t remember. Just look through the WP Codex Plugin directory.
October 17, 2008 at 1:56 pm #33377In reply to: I need help testing an installation
zenseekerParticipantI’m confused. That site looks like an elgg site. Is there a way to private message on here? I’d like to ask you some questions. I’m torn between WordPress MU/Buddypress and Elgg.
October 10, 2008 at 12:21 pm #33288In reply to: Privacy options (friends only viewing)
Andrea RennickParticipantThe only other option currently available is a plugin that makes the blog itself private. No idea how it acts with BP.
-
AuthorSearch Results