Search Results for 'forum'
-
AuthorSearch Results
-
August 27, 2009 at 10:24 pm #51656
In reply to: P2 Theme As The Wire/Wall?
abcde666
Participantis there a chance that BuddyPress integrated P2-theme for the wire and forum as a standard ? I think that would be a great thing and would provide a very quick solution in order to have the posts in a threaded version – which would make BuddyPress superb !
Any thoughts from Andy about this ?
August 27, 2009 at 8:32 pm #51650peterverkooijen
ParticipantSuccess! Solution found here.
The Javascript:
<script type = "text/javascript">
function copyinput()
{
var tmp = document.getElementById('blog_title').value;
tmp = tmp.toLowerCase().replace(/^s+|s+$/g, "").replace(/[_|s]+/g, "");
tmp = tmp.replace(/[^a-z0-9-]+/g, "").replace(/[-]+/g, "-").replace(/^-+|-+$/g, "");
document.getElementById('blogname').value = tmp;
}
</script>The customized function:
function custom_signup_show_blog_form( $blogname = '', $blog_title = '', $errors = '' ) {
global $current_site;
?>
<div id="blog-details-fields">
<label for="blog_title">Blog title</label>
<?php if ( $errmsg = $errors->get_error_message('blog_title') ) { ?>
<p class="error"><?php echo $errmsg ?></p>
<?php }
echo '<input name="blog_title" type="text" id="blog_title" value="'.wp_specialchars($blog_title, 1).'" maxlength="24" onkeyup="copyinput()"/></p>';
// Blog name
if ( 'no' == constant( "VHOST" ) )
echo '<label for="blogname">' . __('Blog Name:', 'buddypress') . '</label>';
else
echo '<label for="blogname">' . __('Blog Domain:', 'buddypress') . '</label>';
if ( $errmsg = $errors->get_error_message('blogname') ) { ?>
<p class="error"><?php echo $errmsg ?></p>
<?php }
if ( 'no' == constant( "VHOST" ) ) {
echo '<span class="prefix_address">' . $current_site->domain . $current_site->path . '</span><input name="blogname" type="text" id="blogname" value="'.$blogname.'" maxlength="50" /><br />';
} else {
echo '<input name="blogname" type="text" id="blogname" value="'.$blogname.'" maxlength="50" /><span class="suffix_address">.' . $current_site->domain . $current_site->path . '</span><br />';
}
if ( !is_user_logged_in() ) {
echo '<p class="help-text">';
print '(<strong>' . __( 'Your address will be ', 'buddypress' );
if( 'no' == constant( "VHOST" ) ) {
print $current_site->domain . $current_site->path . __( 'blogname', 'buddypress' );
} else {
print __( 'domain.', 'buddypress' ) . $current_site->domain . $current_site->path;
}
echo '</strong>. ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)', 'buddypress' ) . '</p>';
echo '</p>';
}
?>
<p>
<label for="blog_public_on"><?php _e( 'I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site.', 'buddypress' ); ?> </label>
<label class="checkbox" for="blog_public_on">
<input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if( !isset( $_POST['blog_public'] ) || '1' == $_POST['blog_public'] ) { ?>checked="checked"<?php } ?> />
<?php _e( 'Yes', 'buddypress' ); ?>
</label>
<label class="checkbox" for="blog_public_off">
<input type="radio" id="blog_public_off" name="blog_public" value="0" <?php if( isset( $_POST['blog_public'] ) && '0' == $_POST['blog_public'] ) { ?>checked="checked"<?php } ?> />
<?php _e( 'No', 'buddypress' ); ?>
</label>
</p>
</div>
<?php
do_action('signup_blogform', $errors);
}What this does:
When the user starts typing the blog title – limited to 24 chars – the Javascript dynamically fills in the blogname for the URL.
The user can manually change the blogname if he/she wants. Not sure how that would work out…
You could probably also hide the blogname field, either through type=”hidden” or CSS. Haven’t tested all these options yet.
But imho this looks like a very versatile solution.

Or have I overlooked some critical issues? Comments very much appreciated!
August 27, 2009 at 3:10 pm #51637In reply to: Can't create groups
andisites
ParticipantI take it back. I can add groups from within wp-admin, but they don’t show up on the BP site. Is this an issue with this part of 1.1 not being ready yet? I also can’t get forum integration to work…when I try to navigate directly to my bbPress admin, it takes me to another install I did on a completely different domain. Weird.
August 27, 2009 at 2:41 pm #51636In reply to: White Screen of Death
August 27, 2009 at 7:20 am #51625In reply to: page not loading: http://buddypress.org/forums/
Paul Wong-Gibbs
KeymasterI’ve seen this sort of issue with sites using wp-supercache with certain plugins before.
August 27, 2009 at 4:22 am #51619In reply to: Can't create groups
andisites
ParticipantI’m having a similar problem. Just did a fresh install with WordPress MU 2.8.4a and the trunk version of BuddyPress 1.1. Also installed bbPress via the WP admin panel. Went through all the setups for BuddyPress (General, Components, Forums), but when I go to the Profile Field Setup it tells me I don’t have any groups. When I try to add one, it returns the message, “There was an error saving the group. Please try again.” If I try to add a group directly via the site, I get the message (in a big scary red bar), “There was an error saving group details, please try again.”
I noticed that the database only has one table with the wp_bp prepend (wp_bp_activity_user_activity_cached). Another install I did (based on WMU 2.8.2, BuddyPress 1.0.3, and current bbPress) resulted in a database with a gazillion wp_bp tables. Is that the problem, and if so, how do I get those tables? And if not…wassup? Having groups is kinda the point, after all.
Otherwise, I’m looking forward to skinning the new template framework (ONCE, rather than twice). Thanks for your patience with a relative BP newbie…
August 27, 2009 at 3:50 am #51617Jeff Sayre
ParticipantThe blank (or white) screen issue on these forums is not the same thing as the “White Screen of Death”. A site that experiences a WSOD is basically not working, is inaccessible, and often indicates an issue with the codebase itself.
The issue with the blank screen on BP.org is not related to the codebase. Whatever is causing this issue will not affect your install.
See this thread for more information.
August 26, 2009 at 7:42 pm #51609In reply to: 2.7.1/rc2 bp-message can’t be loaded?
Paul Wong-Gibbs
KeymasterAnother zombie thread.
EDIT: To clarify, you are responding to a post four months old and several versions of WPMU and BP out of date. Please start a new thread and include the details listed in this post: https://buddypress.org/forums/topic/when-asking-for-support
August 26, 2009 at 6:12 pm #51601hatiro
Participantr-a-y,
Many, many, thanks, I’d searched ‘blogs’ on the forum but couldn’t find it…time to change my glasses again…
August 26, 2009 at 6:06 pm #51600In reply to: Details About the New Theme Architecture
abcde666
Participant@John James, (it´s strange to always have to write “@somebody”, why is the forum and the wire not THREADED ? Also, why does the person I am replying to not get an e-mail-notification about my reply?)
anyhow, now to my question:
how to easily apply my own custom-theme onto the user-blogs ? I would like to have ALL my user-blogs to have the same design as my main-page.
Many thanks,
Erich
August 26, 2009 at 5:43 pm #51599r-a-y
KeymasterHey hatiro,
I had a question about the exact same thing a couple of months ago; here’s the thread:
https://buddypress.org/forums/topic/excluding-certain-blogs-from-bp_has_site_blogs-function
August 25, 2009 at 10:25 pm #51567In reply to: page not loading: http://buddypress.org/forums/
Jeff Sayre
ParticipantCrap! Okay, I spoke too soon. When I posted the above reply, I received a blank page. But, at least the “strong” tag inserting issue has been “solved”.
August 25, 2009 at 10:23 pm #51566In reply to: page not loading: http://buddypress.org/forums/
Jeff Sayre
ParticipantWell, it seems that the tinyMCE (or whatever Javascript WYSIWYG Editor these bbPress forums were using) may have been causing the issue. It has been removed from the posting and editing panel and now I have no issues–especially the really annoying “strong” tag inserting issue that WebKit-based browser users experienced.
I can live without the convenience of quicktags. I’m very glad that I no longer have to deal with the “strong” tag issue.
August 25, 2009 at 8:59 pm #51559In reply to: page not loading: http://buddypress.org/forums/
John James Jacoby
KeymasterI think the white pages identify BuddyPress as giving users a clean slate; something that can easily be built upon.
“BuddyPress: Bear friendly, and no regrets.”
LOL I actually got a white screen when I went to post this.

My guess is it’s a server/user issue; probably getting overloaded as BP becomes more popular. I know that Google is probably indexing the heck out of it, because Googling my name comes up with a TON of BP links.
August 25, 2009 at 8:31 pm #51557In reply to: page not loading: http://buddypress.org/forums/
Jeff Sayre
ParticipantYep, see my “UPDATE” section in my post above. I brought this to Andy’s attention yesterday. He said he would pass it on.
But, I kind of like the white pages. It makes you feel like you are being kept from seeing something secret!
Perhaps it should randomly change the screen color just to add some flavor–black, blue, orange, red or even clear!
August 25, 2009 at 8:27 pm #51556In reply to: page not loading: http://buddypress.org/forums/
John James Jacoby
KeymasterAye; it’s happening for everyone all the time randomly. My guess is the appropriate people wearing the right hats are already working on it.

P.S. – All browsers; Vista 64, random white screens fixed by refresh. Happens with all actions (posting, editing, and just viewing pages and posts.)
August 25, 2009 at 8:20 pm #51554In reply to: page not loading: http://buddypress.org/forums/
Jeff Sayre
Participant…also in my own WPMU (2.8.4) install with the latest BP trunk (1696).
The blank-page issue is specific only to these forums (BuddyPress.org/forum/…). Several of us are running the latest Leopard and Safari versions and often run into this issue after posting a reply to a thread. It seems to occur less frequently when accessing the main forums page.
As far as we can determine, it does not show any tendency to be more prevalent in one browser versus another. It also occurs for at least one of the BP moderators who is on a WinTel machine (for him both in IE and FF).
If anyone else is currently experiencing this issue, please post a quick reply here. Include your OS, browser, and noticed behavior.
UPDATE: I just logged out of BP and was redirected to a blank https://buddypress.org/ page. So, it is not a bug that only logged in people see and it is not restricted to the forums. I did suggest to Andy that the server(s) be rebooted as an easy first step. Sometimes that is all it takes. But, I think BP.org is split between several (how many) servers. I’m not sure what else may share that space. So, it may not be as easy (or at least as convinent) as I would think.
August 25, 2009 at 6:41 pm #51550In reply to: Members, Groups and Blogs style sheets not working
Paul Wong-Gibbs
KeymasterPlease see https://buddypress.org/forums/topic/when-asking-for-support. We have no idea what your setup is.
August 25, 2009 at 5:43 pm #51547In reply to: page not loading: http://buddypress.org/forums/
oriste
ParticipantIt loads fine for me with Mac OS X 10.5.8 and Safari 4.0.3, also in my own WPMU (2.8.4) install with the latest BP trunk (1696).
August 25, 2009 at 4:48 pm #51545In reply to: page not loading: http://buddypress.org/forums/
abcde666
ParticipantHi Jeff,
many thanks for confirming ! So I do know now that it´s not an issue I am having myself only.
I just had the issue when I was trying to load the main page at URL http://www.buddypress.org
Best regards,
Erich
August 25, 2009 at 3:01 pm #51543In reply to: No 404, Just Shows
Michael Berra
ParticipantFound something in the WPMU FOrums that fixed it temporarly for me: https://mu.wordpress.org/forums/topic/9458/page/2
August 25, 2009 at 1:16 pm #51541In reply to: None of the Pages work after fresh install
morgenvrij
MemberI solved my problem thanks to DjPaul here:
https://buddypress.org/forums/topic/blank-page-when-clicking-blogs-members-etc
August 25, 2009 at 12:56 pm #51539In reply to: move /members directory to another domain ?!
Jeff Sayre
Participant( Not found any problems yet )
Please read this entire thread. Also, as referenced in that thread, these two tickets in Trac apply:
August 25, 2009 at 12:51 pm #51538In reply to: page not loading: http://buddypress.org/forums/
Jeff Sayre
ParticipantWe are aware of the problem. Andy is looking into it. It occurs in all browsers and on both Mac and WinTel platforms.
For me, the issue is most prevalent after posting a reply. The proper URL for the thread shows in the address bar of the browser but the page is blank. As you say, refreshing the browser “solves” the problem.
August 25, 2009 at 6:13 am #51532In reply to: Blank page when clicking blogs, members etc.
morgenvrij
MemberWhen browsing the forums I noticed similair problems with several (possible) sollutions. Isn’t it an idea to make a couple o sticky topics where failry common problems or bugs are being explained?
It’s a bit to much maybe, but al of the information about a problem like mine is scaterred now trough topics.
-
AuthorSearch Results