Search Results for 'wordpress'
-
AuthorSearch Results
-
September 14, 2009 at 4:32 pm #52397
John James Jacoby
Keymastercatinw12, you shouldn’t need to create any new profiles anywhere. All of the .org sites should provide you a unified login/password combo to use on wordpress.org, bbpress.org, buddypress.org, and all of their respective trac’s.
September 14, 2009 at 12:06 am #52360Greg
ParticipantThis is really a WPMU issue, so I’ve posted it over there: https://mu.wordpress.org/forums/topic/14425?replies=1#post-83354
I think this issue will stop Google (and other search engines) from indexing your forum pages. So if you are using deep integration it might be a good idea to watch for a patch.
Use my little workaround at at your own risk.
September 13, 2009 at 10:53 pm #52359Greg
ParticipantI’ve also seen the blank pages.
Returning to the 404 issue (and cross posting from https://bbpress.org/forums/topic/help-404-error-but-page-displays?replies=3#post-57822), it looks like WordPress is setting the 404 because it doesn’t recognize the bbPress page that is loading.
When the global WP object is constructed, the function WP->handle_404 calls “status_header( 404 )”.
As a workaround, I modified “handle_404” to lay off the 404 if “BB_PATH” is defined (i.e. when a bbPress page is loading). This seems to work ok.
Here’s the new “handle_404” at around line 445 in “wp-includes/classes.php”.
function handle_404() {
global $wp_query;
if ( !defined( 'BB_PATH' ) && (0 == count($wp_query->posts)) && !is_404() && !is_search() && ( $this->did_permalink || (!empty($_SERVER['QUERY_STRING']) && (false === strpos($_SERVER['REQUEST_URI'], '?'))) ) ) {
// Don't 404 for these queries if they matched an object.
if ( ( is_tag() || is_category() || is_author() ) && $wp_query->get_queried_object() ) {
if ( !is_404() )
status_header( 200 );
return;
}
$wp_query->set_404();
status_header( 404 );
nocache_headers();
} elseif ( !is_404() ) {
status_header( 200 );
}
}September 13, 2009 at 5:36 pm #52341In reply to: Missing CSS in trunk theme upgrade
Paul Wong-Gibbs
Keymasterwordpressfan: That’s nothing directly to do with the subject of this thread, which has been marked completed. Start a new thread.
September 13, 2009 at 1:41 pm #52324In reply to: Point System in BuddyPress?
deanm
ParticipantThanks. Missed that.
Looks great. Definitely going to try it out:
September 13, 2009 at 7:59 am #52319In reply to: New Theme Structure Help
Paul Wong-Gibbs
KeymasterIt sounds like you need to learn a bit about how WordPress child themes are implemented. I had a quick google and found http://op111.net/53.
I’ve also removed the status from this thread as it isn’t a support issue.
September 13, 2009 at 5:09 am #52313danf-1
ParticipantYep – I will ask on wpmu as well.
But what about the buddybar question? I’ve read about how people implemented it in bbpress – but that still is in the same wordpress environment.
What about getting the buddybar on an application external to wpmu?
Can I set up a page template for a page that just spits out the buddybar html – then include that on my external subdomain either as a php include or as an iframe??
September 12, 2009 at 6:43 pm #52303Jeff Sayre
ParticipantTore, read this and see if that helps.
I would first search the most recent file you modified, making sure that you did not add whitespace before or after the php tags. It appears that that would be new-user.php. If you cannot find the issue in that file, then move on to the the next file you modified, looking for the same issue.
September 11, 2009 at 10:25 pm #52287In reply to: Member Theme: Remove 'Me' and 'My Profile' Columns?
wordpressfan
ParticipantMy thinking is to emulate the profile style of either buddypress.org or wordpress.org sites. My site will only provide the ability to create a profile or search a profile. Actions such as e-mailing profile owners would be available within the main profile section.
Thanks for closing the other thread; I did not know the question had already been answered.
September 11, 2009 at 9:44 pm #52284In reply to: User disabled blog but now wants to create but can't
Brajesh Singh
Participanthi dwpers
are you using Limit blogs per user plugin.
This is a known issue with that plugin.let me explain it.
If s user does not selects a blog,he is added as a member of your main site(subscriber or what ever default signup role is,this is a wordpress Mu requirement).So the blog count for user becomes one even if he has not signed up for the blog.
You can manually add the user to new blog.
Please go to wpmu backend->Site Admin->Blogs
In the add blog option,enter the users email address(the email address of existing user and create his blog).he will be automatically assigned the new blog(removed from the main blog) and can do the things as normal.
hope it helps.I am working on the newer version of this plugin which will take into consideration the factor (when user has no self created blog,it should be considered as zero).
Thanks
Brajesh
September 11, 2009 at 6:45 pm #52278In reply to: Removing userbar and optionsbar from Profiles?
Jeff Sayre
ParticipantI’m closing this thread as it deals with the exact same issue you posted several hours earlier. You can read my response in that thread.
https://buddypress.org/forums/topic/member-theme-remove-me-and-my-profile-columns
September 11, 2009 at 8:27 am #52264In reply to: bp-events for bp 1.1 needs testing!
matthijsv
ParticipantInstalled the plug-in, it’s looking good! I’ll post results after I’ve done some testing.
Question: I want to create a widget just like the wordpress calender: http://www.sajidmc.net/wp-content/uploads/2009/04/screenshot-1.png
but than for the events. Any idea’s how I can do this quickly?
I know how to script, but don’t know where to start with this.
September 10, 2009 at 10:12 pm #52258In reply to: Fighting Splogs
r-a-y
KeymasterYou could also try some WP plugins that add additional hidden, input fields to the registration form:
-Invisible Defender – https://wordpress.org/extend/plugins/invisible-defender/
-NoSpamNX – https://wordpress.org/extend/plugins/nospamnx/
Chances are a spam bot will fill these input fields in, and thus these plugins will block these submissions.
—
I’ve been meaning to give this a shot, but I haven’t tried it yet because I don’t need the extra layer of protection (right now anyway)!
September 10, 2009 at 5:18 pm #52248In reply to: BuddyPress Showoff: Post your links
r-a-y
KeymasterNot sure if everyone knew this, but wordpress.org uses BuddyPress now!
Check it out:
September 10, 2009 at 9:50 am #52239In reply to: WordPress MU 2.8.1 Blogs
gyonis
ParticipantSorry guys, was in the hospital for the last few days, really sorry for the late reply. Thanks for the detailed reply, r-a-y. Was very helpful.
Thanks again
September 10, 2009 at 8:40 am #52236In reply to: WPMU 2.8.4a deep integration breaks RSS feed
Sven Lehnert
Participanttray this deep integration script instead, this should fix your problem.
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘/your/absolute/path/to/wordpress/wp-config.php’ );
$wp->init();
$wp->register_globals();
September 10, 2009 at 4:46 am #52234Jason Giedymin
ParticipantPatches Recap (Project SSL):
https://trac.mu.wordpress.org/ticket/1111
https://trac.mu.wordpress.org/ticket/1107
https://trac.bbpress.org/ticket/1136
https://trac.bbpress.org/ticket/1190
https://trac.buddypress.org/ticket/979
A lot depends on 1111 and 1107.
It introduces ‘force_ssl_content’ and I think everything under the sun can use it.
If 1111 goes through you might as well add ‘Securing Buddypress’ to the roadmap, let R-A-Y, the gang and myself loose on this task.
September 10, 2009 at 3:55 am #52229In reply to: give each blog their own buddypress?
Anointed
Participant@chargertech – When bp 1.1 final is released I will reinstall it on my system and go to town trying to figure it all out.
Who knows, maybe Andy or someone will chime in someday and give us an example as to how to apply user filters to activity streams and listings.
I’ve still got to guess that they already have something even better up their sleeves. With automatic behind buddypress, one has to figure that they plan on adding it to wordpress.com someday, which would require this type of functionality.
September 10, 2009 at 2:45 am #52228In reply to: BuddyPress Showoff: Post your links
Greg
ParticipantWordPress blog since 2006, bbPress forum added in 2008, and now a BuddyPress community. To start with we’re only using extended profiles and private messaging, but will layer in additional features over time.
Very grateful for the powerful platform that Andy and team have created, and for the great support offered by Burt, JJJ, Jeff and all the others on the forum.
September 9, 2009 at 6:10 am #52210In reply to: Importing from EzBoard/Yuku
Paul Wong-Gibbs
KeymasterAs I read your post, you have an old forum you want “into” BuddyPress. BP or WordPress MU aren’t forums. BuddyPress’ forum components are provided by BBPress.
If you want to import things differently, you need to write your post in more detail and even then I doubt there’s any easy solution
September 9, 2009 at 5:46 am #52209In reply to: Trying to embed a swf banner
r-a-y
KeymasterWPMU places restrictions on certain tags like [embed] and [object].
Try installing the Unfiltered MU plugin and then attempt to embed your SWF.
September 9, 2009 at 3:13 am #52199In reply to: Group Forums Not Displaying Authors – PLEASE HELP!
r-a-y
KeymasterDiego, think of the BP Member template as a starter template (like how the Kubrick template is the starter template for WordPress!).
You have to build upon the template to get what you want to achieve.
September 9, 2009 at 2:17 am #52197Jason Giedymin
ParticipantAdded an additional patch and Function for MU.
Would be nice if we could have it…
Will be used for BP as a filter, as shown in trac notes.
Patches Recap (Project SSL):
[new] https://trac.mu.wordpress.org/ticket/1111
https://trac.mu.wordpress.org/ticket/1107
September 8, 2009 at 9:13 pm #52188In reply to: Importing from EzBoard/Yuku
benjancewicz
ParticipantThanks, r-a-y. I hope Yuku is nice to me…
Sorry, DJPaul. My goal is to import it into BuddyPress, but I didn’t know if perhaps there was some kind of import plugin like there are for importing other blogs into WordPress.
I don’t know what bbPress is either, but I’ll look it up.
Thanks!
September 8, 2009 at 5:50 pm #52174In reply to: Forum Integration: HELPING HINTS
Jimmy B.
ParticipantI’ve gotten WordPressMU installed (2.8.4a) and bbPress (1.0.2) installed. When you create a group the forum is creating in bbPress. I can post a topic on the bbPress side and it’ll show up in BuddyPress. When I try creating a new topic or replying to a topic I get that dreaded – “There was an error posting that topic” message.
I’ve made sure I enabled XMLRPC and Pingbacks in bbPress and added that line to my bbPress config. I also use that XMLRPC testing plugin and it returns normal data so it can connect to bbPress via XMLRPC.
Are there any other troubleshooting steps I can take or any ideas of what I might be missing?
-
AuthorSearch Results