Search Results for 'wordpress'
-
AuthorSearch Results
-
March 6, 2009 at 8:00 pm #39381
bigkill
Participantjohnjamesjacoby – so what should my directory look like where wordpress lives?
/.htaccess
/htaccess.dist
or that the content of htaccess.dist and place into .htaccess?
I have been fighting this and my php.ini.. so if I knew the correct way I need to start there.
TIA
March 6, 2009 at 10:57 am #39358In reply to: Creating different users and their registration
Burt Adsit
ParticipantNot sure what you mean. You want to create a different role system or just create a ‘visitor’ account? There’s a plugin called ‘role manager’ that might do what you want.
https://codex.wordpress.org/Roles_and_Capabilities
http://www.im-web-gefunden.de/wordpress-plugins/role-manager/
March 6, 2009 at 9:53 am #39346Michael Berra
ParticipantI am using this plugin for that case – i think it’s great
:March 6, 2009 at 3:26 am #39340In reply to: WordPress Mu 2.7 and Buddypress POT File!
bloggus
ParticipantWPMU
To translate the WPMU, which I think you want to do, do this:
1. Download the POT file for regular WordPress, current version. WPMU have a lot of strings that are the same. You save a lot of work.
2. Download PoEdit, http://www.poedit.net , install it
3. Download current WPMU
4. Open the POT file for the regular WP
5. Change the path in PoEdit to the path where you have your sorce files to WPMU
6. Run “Update from source” in the PoEdit. That will create you a POT file for WPMU, but will also keep a lot of phrases translated, so you save work.
—
BuddyPress
Same software can be used to extract and create POT file.
March 5, 2009 at 11:19 pm #39330In reply to: WordPress Mu 2.7 and Buddypress POT File!
tufancetin
Memberhelp please!
March 5, 2009 at 10:23 pm #39328In reply to: Where to start theming
Andy Peatling
KeymasterIt’s okay to do anything you want with the theme files, just as you would do in WordPress.
You don’t need the loader.php stuff if you don’t want to, however, it does add some extra functionality, such as cross theme CSS and the ability to selectively load styles.
You should also read this:
https://codex.buddypress.org/getting-started/using-the-buddypress-themes/
March 5, 2009 at 9:05 pm #39323plrk
ParticipantI have no idea what the problem is really, but you should be using subdomains for your wpmu blogs if running WordPress MU, afaik. Otherwise you are bound to get in trouble.
March 5, 2009 at 7:41 am #39303In reply to: BP Avatars in bbPress
John James Jacoby
KeymasterI basically started going through what changes were made to your plugin since it last worked, and started replacing code block by block. Once I could debug the XML request, it gave me some eyes in the back of my head so to speak, to watch what I couldn’t otherwise see.
So basically, it sounds like there is something in the xprofile field, and/or something in some users meta info that the XML parser just doesn’t like, so it gets caught up and returns a crappy value? Is that a good guess? You think it’s time to just rip through the user meta and see if anything looks suspicious?
Here’s a question. What if there are users that haven’t yet updated their profiles in BuddyPress? They were converts from a wordpress.org install, and if they haven’t returned since then, BuddyPress doesn’t have a “fullname” for them yet, and they also don’t have xprofile info. Could that break this somehow? Is there a way to watch this user by user and have it spit out an error when it finds a bad value?
Also, just for the record. I’m using BuddyPress RC1, bbPress Alpha6, and WPMU2.7. Is it possible there was a trunk update that you’re using that I’m not that maybe gives you different results than me?
More specifically, if I comment out line 335 in oci_bp_groups_forums.php…
//$user['xprofile_' . $group->name . '_' . $field_obj->name] = array('group' => $group->name, 'name' => $field_obj->name, 'value' => $field_obj->data->value, 'type' => $field_obj->type);And run the group import, it works without error as well.
If I put a switch on the $field_obj-> name…
switch ($field_obj->name) {…and only retrieve the custom title and forum signature, the groups import also works (still not for all users though, only groups.) I think it may be tripping over a specific type of field. I’m going to guess the textarea field, but that’s totally a blind guess with no merit or motive what-so-ever.
March 5, 2009 at 12:50 am #39294In reply to: BP Avatars in bbPress
John James Jacoby
KeymasterMy process above was using deep integration. Even if an XMLRPC request looks for the xmlrpc.php in the bbpress install directory, it still loads bb-load.php, which loads bb-config.php, which loads all of wordpress before proceeding to load the remainder of bbpress. If an XMLRPC request is being made from buddypress to bbpress (like when viewing a group forum from within BP), I don’t want to reload all of buddypress again invisibly, if that makes sense?
That’s why I did…
if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) {in bb-config.php, to prevent reloading ALL of wpmu and bp just for a quick xmlrpc peek.
What I don’t get is why it works in every version but this new one.
March 4, 2009 at 11:31 pm #39286In reply to: Constant CSS (global styles) for Home and Members
Trent Adams
ParticipantWordPress allows you to subscribe to the wp_head filter to add things through plugins to your site. More information is found here on that. An example of this in use would be looking at this one even though it is a little different than you are looking for, but gives idea how to do it.
Really, you create a little plugin to put in your /mu-plugins/ folder that has a function that adds the stylesheet to the wordpress header of every page. Then you subscribe that function to the wp_head filter.
Trent
March 4, 2009 at 8:25 pm #39279In reply to: Increase Avatar Quality – Looks Hazy?
Paul Wong-Gibbs
KeymasterWordPress has had a patch submitted for this imagejpeg() thing and it’s already been added into the source, so future releases (and therefore future releases of WPMU) should let us use our filter. Hurrah!
March 4, 2009 at 7:41 pm #39276In reply to: Making Member Theme Header Match Main Theme
Simon
ParticipantWordPress detects the currently enabled theme’s root and css directories via the bloginfo(‘template_directory’) and bloginfo(‘stylesheet_directory’) functions.
To call the css and images from the home theme in a member theme template you would have to hard code the path references as “/wp-content/themes/buddypress-home/styles.css”.
Personally, as hard coding is generally a bad idea, I would suggest simply copying the elements you wish to use from the home theme directory to the member theme directory and reference them the usual way.
March 4, 2009 at 5:39 pm #39268In reply to: BuddyPress For WordPress (Not MU) Coming
Adam W. Warner
ParticipantI couldn’t agree more with donnacha. I would rather see patience and success, than instant gratification and failure. (not that it would ever fail of course:)
March 4, 2009 at 4:34 pm #39265In reply to: BuddyPress For WordPress (Not MU) Coming
lorenzocoffee
MemberYou already know that,possibly,
but just to make it sure: You are Great, people.
March 4, 2009 at 3:28 pm #39260In reply to: BuddyPress For WordPress (Not MU) Coming
brandtd
MemberWP to WPMU wasn’t hard at all, actually. I was really nervous taking my site from WP to WPMU but it went without a hitch.
BP for WP sounds sweet!
March 4, 2009 at 2:20 pm #39254In reply to: BP Avatars in bbPress
Burt Adsit
ParticipantMornin’ John.
I’ve got my system setup to use deep integration now. This way in bb-config.php:
if (file_exists(‘../wp-blog-header.php’))
require_once(‘../wp-blog-header.php’);
else
if (file_exists(‘../../wp-blog-header.php’))
require_once(‘../../wp-blog-header.php’);
Very first thing under the comment block in that file. I’m also using your code to fix the require_once() problem on both sides.
I deleted *all* the meta data that bbGroups puts into bbpress meta and wp user meta tables. Started completely from scratch. Configured bbGroups to use the utility user and password that is setup in the bp group forums side.
Imported all my test groups and users. Both all users and just users who belong to groups. I get the proper numbers and data. I don’t have 100+ users but that shouldn’t matter. If Andy was going to try and import the 500,000+ users from wordpress.org I’d be worried about the amount of data getting generated.
I don’t think I have to worry about that scenario right now.

I’m not having any problems importing even with deep integration. Lemme know what you find on your side. I have to do some running around today so I’ll be gone till this afternoon. I’ll check back in then.
March 4, 2009 at 2:11 am #39215In reply to: Scalability
21green
ParticipantWhat i’m concerned about is that every user can create his own blog. I’ll miss the possibility to limit the users storage or traffic. Would be great if the BuddyPress Hoster could offer a basic free membership (wich is limited somehow) and if anyone special needs more the hoster could charge him for that. I’m thinking of the concept of http://en.wordpress.com/products/
Is there anything like this in the pipeline?
March 4, 2009 at 12:05 am #39207In reply to: BuddyPress For WordPress (Not MU) Coming
Donnacha
ParticipantGiven that you are delaying the release of BP until site-wide plugins are introduced into MU, it might also be an idea to wait until the WP version is also ready.
Although as anxious as anyone to see the official release, it occurs to me that any project only gets one shot at it’s 1.0 release and all the publicity that attends it. That one-off burst of attention can make all the difference to how much traction you gain in the long-run.
IF BuddyPress jumps into the spotlight as an MU-only project, that’s obviously going to be of great interest to people already familiar with MU but the average blogger is going to scratch his head and not get much further than the fact that BuddyPress isn’t for “normal” WordPress. Disappointed, he will return to his extensive collection of porn and ignore all future mentions of BuddyPress.
If, on the other hand, BuddyPress appears in the spotlight as a dual-release, with both a WP and an MU version, it will garner far more publicity, will be more obviously relevant to ordinary bloggers and will generally create a far larger splash, hopefully translating into greater momentum for the project.
Just a thought
March 3, 2009 at 11:44 pm #39206In reply to: BuddyPress For WordPress (Not MU) Coming
Mythailife
ParticipantSo do we have a realistic time line for BuddyPress for WP?
March 3, 2009 at 9:49 pm #39189In reply to: BuddyPress For WordPress (Not MU) Coming
Andy Peatling
KeymasterSupporting WP as well as WPMU will not slow down or change the development of BuddyPress at all. I just want to make that clear.
Supporting WP should (and will) be a matter of flicking a switch and continuing along the same roadmap. Most of that switch is already in place, the things I mentioned before are not really blockers, when all things are considered.
March 3, 2009 at 9:02 pm #39179vito687
Participantthanks for responding so fast burt, would it have something to do with the fact that im using this locally with MAMP? the path that wpmu is in is MAMP/mysite/wpmu and the home domain is my-comupter.local/mysite/wpmu/ so should it work?
March 3, 2009 at 7:14 pm #39169In reply to: BP Avatars in bbPress
John James Jacoby
KeymasterBurt…
When accessing the forums using deep integration, with no modifications to your updated plugin…
Fatal error: Cannot redeclare class IXR_IntrospectionServer in /homepages/8/d149961498/htdocs/delsolownersclub/discussions/bb-includes/backpress/class.ixr.php on line 860Think of the loop that’s happening… bbPress loads WordPress, loads ixr, which continues to load bbPress. I really do think both sides need to check to see if the other is included to ensure this doesn’t happen.
Going back to oci_bp_group_forums.php and putting
if (!defined(BBDB_NAME))
require_once(ABSPATH . WPINC . '/class-IXR.php');and then back to oci_bb_group_forums.php and putting
if (defined(BACKPRESS_PATH))
require_once( BACKPRESS_PATH . '/class.ixr.php' );Fixes this.
Let me find where they are declared and try to walk you through the deep integration dance. It’s a pain in the butt, but it works. I don’t see any other way to get things like the BuddyBar and all of the BP functions over to bbPress without deep integration.
March 3, 2009 at 6:35 pm #39167alainhc
MemberWhen I activate the WordPress MU homepage theme it still happens.
March 3, 2009 at 6:27 pm #39165In reply to: How do I clear the menu bar?
John James Jacoby
Keymasterlol Oh Ren… haha!
@brandtd, this is certainly possible. As a matter of fact, this should happen as default unless you change the width of the body or html elements themselves. This is because the “Buddy Bar” isn’t contained by anything that has a relative position attached to it.
In bp-core/css/admin-bar.css – Try…
#wp-admin-bar {
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
z-index: 1001 !important;
height: 26px !important;
color: #fff !important;
text-align: left !important;
background:url(../images/admin_bar_back.gif) #818181 repeat-x !important;
}@brian, duh I get what you’re saying now. If I can give some feedback about the Buddy Bar for a moment, I feel that it should be an all or nothing kind of deal. Either it’s always there for people to use, or it’s never there and people have to naturally find their profile area and do things from there. Toggling a whole new set of what are essentially just short-cuts and adjusting the entire layout of the screen, even if by 26px, provides for a moment of awkwardness from a user perspective. For the 3 seconds it takes for someone to think to themselves “Hey what’s that? Do I need it? What does it do? Oh gosh there’s tons of menus now? What is this stuff?”
Now if you’ve used WordPress.com or signed up for a Gravatar before, then the bar idea isn’t new. But for what I consider the core crowd we’re catering to by using BuddyPress as a social networking platform, if it isn’t uniformly worked into the design of the site from the beginning, it only serves to confuse.
Again, this is just my opinion. Not saying it’s right, and certainly not saying that there is a better way. Just saying…

/rant
Back on topic. In theory you could put a…
<body>
<?php if (is_user_logged_in()){ ?>
<div id="buddy-bar-buffer"></div>
<?php }?>In your header file, and attach the CSS to that, rather than to the body itself? That would then only show that buffer when the user is logged in, and once they are logged in, that buffer will push the body down (as styled by the CSS you will give it in your base.css).
Does that make sense?
March 3, 2009 at 6:07 pm #39161Donnacha
ParticipantUnfortunately, vBulletin decided that a vBulletin WPMU bridge was not in their commercial interests and locked the thread, despite 30 of their licensed users expressing an interest. The thread, http://www.vbulletin.org/forum/showthread.php?t=196906, remains readable but not new posts can be made and, therefore, can no longer be used to rally together all the vB users who would like to see it happen.
I swapped a few emails back and forth with vB and they took the time to explain their position. I don’t agree but I guess I can understand their panic; WordPress is one of the few Open Source products that has wiped out commercial products in it’s sector, blogging, and they’re desperately worried that there is no longer that much difference between their $180 product and the free alternatives.
There is, of course, nothing to stop any of you being a bit cheeky and starting your own threads on http://www.vbulletin.org/forum/, innocently asking why there isn’t a vBulletin WPMU bridge

Personally, though, I’ve deciding to transition away from vB – I’ll be keeping my existing vB sites going but, for new projects, I don’t see the point of buying any more vB licenses.
bbPress is pretty bad but I’m optimistic that they will improve over time, especially now that BuddyPress is advancing so quickly. I like the way in which, in BuddyPress, the forums are spread among the groups within the social network – it makes a lot of sense, sort of like wrapping each section of your forum in it’s own homepage, featuring the users who “hang out” in that section.
-
AuthorSearch Results