Search Results for 'buddypress'
-
AuthorSearch Results
-
May 5, 2009 at 4:32 am #44443
In reply to: register.php not working (but wp-signup.php does)
Kunal17
ParticipantOk, I did find an error_log file in my base domain’s directory. I am trying to parse through that but its been tracking for weeks and I have 5 running addon domains so a lot of info. I will try to find anything relavent to the buddypress domain and post it here.
May 5, 2009 at 2:58 am #44436In reply to: Buddypress RC2 Logout Bug
arghagain
ParticipantRemoving fix, but don’t u need these lines at all? I had attempted to integrate bbPress before, but it wasn’t working, so I remove bbPress altogether. Is this why this is a problem? How to fix?
May 5, 2009 at 12:23 am #44430In reply to: Design Goals for BuddyPress
wickedbob
ParticipantCool. I thought I wasn’t going mad.
I’ll stop bothering you Andy so you can make more cool stuff.

Jeff, I tried installing Nicola’s plugins on a clean BP installation but some of them seem to break my plugins page and then make the database dirty, so I’m unable to reinstall them again without plugins functionality breaking again.
I’m gonna wait until his work is a little bit more stable.
May 4, 2009 at 11:51 pm #44428Jeff Sayre
ParticipantAs the first step in helping you solve this issue, please go back and read the section entitled “Upgrading the Theme files” in the first post of this thread and verify that you have taken the proper steps.
May 4, 2009 at 11:37 pm #44429In reply to: The page you were looking for was not found.
Jeff Sayre
ParticipantWillPCG-
Okay a few additional questions:
- Are you logging into WPMU’s backend as the site administrator, and not just as a user with administrator privileges?
- You’ve mentioned 404 erros in your other thread. Are there any errors in your log files? If so, what are they?
- Did you go to “BuddyPress > General Settings”, re-select the member theme, and then hit save? Do this even if the theme is already selected.
May 4, 2009 at 11:33 pm #44426In reply to: The page you were looking for was not found.
TheEasyButton
ParticipantI swear that you\’re talking about 2 separate things.
When activating the home theme, you will first use \”Themes\” to enable it. Then, you go to Appearance, click the theme and you get the big popup where you click activate.
When activating the profile (member) theme, there is no screen shot. Only a pull down menu.
So your statement of \”whenever I try to load the BP theme itself after activating it the large screenshot that comes up just says \”You do not have any BuddyPress themes installed.\” seriously confuses me.
That error should only be coming up on the profile page. i.e. nacdb.com/members/members/admin
Also, could you enable registration of username & blogs so that anyone attempting to help can sign up for an account if need be.
May 4, 2009 at 11:28 pm #44425Jeff Sayre
ParticipantWillPCG-
This is the same issue as the one being discussed in another thread. To get the best support, the discussion should be kept to that single thread. Otherwise, new people joining in will not see what has previously been discussed and tried.
So as not to spread this identical support issue over multiple threads, I’m closing this thread. Please visit the original thread here: https://buddypress.org/forums/topic.php?id=2511
abcde666
ParticipantI am interested in an “events-calendar” per BP-group.
people should be able to say “I will join this event” and “I may join this event”. Then you can see a list of people who will join this event or might join this event.
It should alos be possible to invite users to this event..
also, integration into the photo-album (which will be released by BuddyPress later this year) would give this a great tool.
also, it should be possible to attach a .pdf-file or an image or a link to post details of the event.
Would like to see a plug-in for this which is also officially approved by the official developers like Andy.
Please let me know if and when anything like this will become available.
I am ready to pay $$$ if it´s working properly…..
Thanks,
Erich
May 4, 2009 at 9:11 pm #44416In reply to: BuddyPress Skeleton Component v1.2 RC-2
belogical
ParticipantJeff, did the code for the icon, heart_bullet.png, get stripped out? I can’t seem to find it.
May 4, 2009 at 8:55 pm #44415In reply to: Why is BuddyPress stripping my object or embed tags?
jugoretz
ParticipantThe Google Maps Quicktags plugin
http://www.remotesensingtools.com/2007/08/22/wordpress-plugin-google-maps-quicktag/
takes care of this problem (which would also affect embedded Google Maps).
May 4, 2009 at 8:54 pm #44414In reply to: Site Wide Widget error
dbascent94
ParticipantBefore I installed a custom theme I tried the default theme and had the same problems. I did solve the group wire problem following Andy\’s advice in another thread. https://buddypress.org/forums/topic.php?id=2339
If I can solve this widget problem I am good to go.
May 4, 2009 at 8:43 pm #44412In reply to: The page you were looking for was not found.
Will White
ParticipantI think I’ve narrowed down the problem. The installation isn’t recognizing the fact that bp-themes is in the wp-content directory.
Even though the two options for Member and Skeleton themes are available through the buddypress settings panel, whenever I try to load the BP theme itself after activating it the large screenshot that comes up just says “You do not have any BuddyPress themes installed.
Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes” and refresh this page. “
However I’ve verified, and re-verified, and re-verified again that bp-themes is, in fact, in the wp-content folder along with themes plugins mu-plugins etc.
Anyone know what could be causing this?
May 4, 2009 at 8:25 pm #44407In reply to: The page you were looking for was not found.
Will White
ParticipantI just removed BP from the WMU completely, then reinstalled it following the directions at https://codex.buddypress.org/getting-started/installing-buddypress/ to the T and the same problem is still happening.
May 4, 2009 at 7:43 pm #44398In reply to: header.php buttons – selected class
belogical
Participanti gave up and did it my own way
i basically looked at the URL and checked to see if it matched, if so, then use the selected class, if not, then a dummy class. use if you like:<?php
global $current_user;
$username = $current_user->user_login;
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "
/";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"]."
".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
$currentURL = curPageURL();
if ( $currentURL == "http://domain.net/members/$username/mystuff/stuff-home" ) {
$dynamicClass = 'selected';
} else {
$dynamicClass = 'NOTselected';
}
?>
<li class="<?php echo $dynamicClass; ?>"><a href="<?php echo 'http://domain.net/members/'.$username.'/mystuff/stuff-home' ?>" title="<?php _e( 'My Stuff', 'buddypress' ) ?>"><?php _e( 'My Stuff', 'buddypress' ) ?></a></li>May 4, 2009 at 7:41 pm #44397In reply to: The page you were looking for was not found.
Will White
ParticipantTo answer both questions the setup/directory listing for buddypress is
nacdb.com/members/wp-content/plugins/buddypress/
nacdb.com/members/wp-content/themes/bphome/
nacdb.com/members/wp-content/bp-themes/bpmember/
members/ contains all of WMU – its not in the root directory.
May 4, 2009 at 7:36 pm #44394In reply to: BuddyPress to Facebook Connect Updated for 1.0
Roy McKenzie
ParticipantThat’d be cool.
May 4, 2009 at 7:35 pm #44393In reply to: The page you were looking for was not found.
TheEasyButton
ParticipantI swear you keep editing your initial post – Quit it. LMAO
I see what you’re saying. All of your links have an extra directory in them.
members/admin is what you want
member/members/admin is what you’re getting.
Is your buddypress stuff in
wp-content >> plugins >> buddypress
May 4, 2009 at 7:27 pm #44392In reply to: The page you were looking for was not found.
Will White
ParticipantYou installed BuddyPress in http://www.example.com/members ?
That was just an example of the structure that the links seem to follow – not the actual url.
The actual url is nacdb.com/members
May 4, 2009 at 7:09 pm #44390In reply to: The page you were looking for was not found.
Will White
ParticipantNo Luck.
I tried removing the duplicate files, then reactivating the theme.
When I went to reactivate the theme the screen that pops up that should you the screenshot of the theme and has the “Activate This Theme” at the top right had this message:
You do not have any BuddyPress themes installed.
Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes” and refresh this page.
However, I’m staring at my ftp screen and its already there!
May 4, 2009 at 6:56 pm #44387In reply to: The page you were looking for was not found.
John James Jacoby
KeymasterYou installed BuddyPress in http://www.example.com/members ?
May 4, 2009 at 6:44 pm #44385Jeff Sayre
ParticipantHere is a great introduction by Trent Adams to the HyperDB plugin.
As far as this issue is concerned:
If there are other blogs/sites created within the WPMU installation (but not BuddyPress) and other BBPress installations as well, is it recommended that everything reside in the same database, or should things like the additional BBPress installations use a separate database?
…
I don’t want to completely kill whatever server this could potentially end up running on, but quick response times and user integration between all platforms is key. The higher-ups estimate that there would be about 1,000 or so users for the duration of the event,
In this scenario, splitting WPMU data between multiple databases on the same database server will not give you much of an advantage. In fact, it could even slow read/write down slightly. But, if this is a temporary site, which it sounds like it might be, then splitting the load between multiple DB servers is probably not realistic.
The biggest issue will be how many web server and DB server cycles are dedicated to your domain and how many to other people’s domains. If you have a small hosting account, then you’ll absolutely need to upgrade to a decent VPS.
May 4, 2009 at 6:38 pm #44383John James Jacoby
KeymasterDang! jjj beat me by 45 seconds!
Too slow Camopants!
May 4, 2009 at 6:33 pm #44381Jeff Sayre
ParticipantDang! jjj beat me by 45 seconds!
May 4, 2009 at 6:33 pm #44380Jeff Sayre
ParticipantTony-
I had this issue as well about a month ago. The solution is simple. You need to create a new account.
Why? Because, like me, you created an account with a space in your account name (username). Also like me, you choose to use your real name. Logically enough, you put a space between your first and last name. You can see that by hovering your cursor over your name. Do you see the “%20”? That is the space.
This is not a BuddyPress issue. This is an issue with the way that WPMU processes new registrations, allowing spaces in usernames. Unfortunately, this can cause issues.
Andy knows more about this issue than I do, but suffice it to say, when creating your new username, do not put a space in it.
May 4, 2009 at 6:32 pm #44379John James Jacoby
KeymasterProblem is because your username has a space in it and is using capital letters. Where did you originally register your account and how?
If you click on Create a Group, you will see that it’s currently disabled, however groups are essentially harmless and are meant to be ways for users to get together on their own and discuss whatever they want to discuss.
-
AuthorSearch Results