Search Results for 'wordpress'
-
AuthorSearch Results
-
January 3, 2010 at 1:36 am #59922
In reply to: fullname vs username vs first + last name…
peterverkooijen
ParticipantThis is my pet peeve with Buddypress! Wasted at least two weeks on this issue last Summer.
I use the same Beau Lebens email as login plugin that David Lewis found. So I wanted to get rid of username entirely and have basically only real name and email address on my registration form.
To integrate a mailinglist script I needed separate firstname + lastname. Buddypress doesn’t store them out-of-the-box. This is NOT a WPMU issue; WP/WPMU has firstname + lastname in wp_usermeta, but Buddypress simply refuses to synchronize those fields, so you can’t count on the data being there for other scripts (mailinglist, events, etc.).
Here’s my solution:
How to synchronize firstname+lastname between xprofile field_1 and wp_usermeta upon registration
And
How to autogenerate blogname (url) from Blog Title (or username from fullname!)
The Javascript I use for fullname->username looks like this
function copyinputuser()
{
var tmp = document.getElementById('field_1').value;
tmp = tmp.toLowerCase().replace(/^s+|s+$/g, "").replace(/[_|s]+/g, "");
tmp = tmp.replace(/[^a-z0-9-]+/g, "").replace(/[-]+/g, "").replace(/^-+|-+$/g, "");
document.getElementById('signup_username').value = tmp;
}Unfortunately a lot of people sign up with only one name in the Fullname (field_1) field. Question:
Would anyone know how to validate/check the input for a two-part (minimum) name? You’d probably have to check for a space, make a space required. How would that script look?
No firstname/lastname because this does not work for a lot of international users.
Which countries are you talking about?! Name them.
With all due respect, this is such a bizarre argument. Not only the western world, but India, China, etc. all have no problem whatsoever using two or more names. Countries that use only one name or more than four can write their own plugins, along with the language pack etc.
More than two names is no problem; separating first and last name is primarily about having a first name available. Users can put their other two, three, four names in the second field.
If Facebook, LinkedIn, etc. have no problem requiring separate firstname and lastname, why is this such a controversial issue for Buddypress? Why make life difficult for 80-90 percent of Buddypress users just to prevent offense to 10 percent with different customs?
January 2, 2010 at 8:57 pm #59917In reply to: Modified mail message registration
peterverkooijen
ParticipantI’ve tried this regular WordPress plugin for New User Email Setup, but it didn’t do anything at all for Buddypress activation.
This BuddyPress Registration Options has some very useful features that I probably need anyway, but it still doesn’t allow you to change the From and Subject lines. [username] seems to be the only available tag, not [fullname]. You can’t make any changes unless you check Moderate New Members.
Why is more control over the registration process not built into the Buddypress core? It’s essential to a social network imho.
January 2, 2010 at 9:21 am #59897Andy Peatling
KeymasterWordPress MU 2.9 (currently trunk) / WordPress 2.9 are required for BuddyPress trunk and will be required for 1.2.
January 2, 2010 at 8:58 am #59896Tore
ParticipantHere’s the latest trunk from WPMU:
January 2, 2010 at 12:32 am #59893In reply to: Twitter Connect… Anybody?
gpo1
ParticipantMaybe OpenID could provide the solution,but twitter sign would be good.
https://wordpress.org/extend/plugins/twitconnect needs to be hacked for BP.
peterverkooijen
ParticipantJanuary 1, 2010 at 7:07 am #59877In reply to: New BuddyPress 1.2 default theme
Andy Peatling
KeymasterThe header CSS is from the WordPress custom header API. It will only show if you select a custom header image in the backend.
January 1, 2010 at 6:05 am #59875In reply to: 404 Page Not Found Issues – Mod Rewrite
designodyssey
Participantsolved my issue. Hope it helps someone. https://mu.wordpress.org/forums/topic/16051?replies=6
December 31, 2009 at 9:09 pm #59864In reply to: Blank page on member blogs in 1.1.3 and 2.8.6
Brajesh Singh
ParticipantYou must have a theme with folder name “default” in your wp-content/themes.
This theme gets activated when you/your member create a new blog.
If you want some other theme, not the default, you may try this plugin
https://wordpress.org/extend/plugins/wpmu-new-blog-defaults/
Hope it helps
Brajesh
December 31, 2009 at 7:29 pm #59862In reply to: Blank page on member blogs in 1.1.3 and 2.8.6
peterverkooijen
ParticipantI reinstalled 1.1.3+2.8.6. Member blogs apparently use/require the default WordPress theme.
Is that how it should work? Or did I miss a setting somewhere, do something wrong?
How can I make sure a theme is activated upon activation of a member blog?
peterverkooijen
ParticipantAs i am not a programmer nor IT professional, i am just a simple press photographer. I will keep listening for info on the gallery situation and hopefully one day this will be resolved.
Zenphoto is the only gallery script I’ve found that can handle uploads of 5+ Mb hi-res image files. NextGen is an excellent WP plugin, but not designed for professional photographers. Not sure if you’d need that for your BP gallery. That could be the trade-off going with a native beta BP plugin.
vanicon
ParticipantSorry that I do not understand, or translator of Google’s brain is cooking, or something else, but there in a folder / pravoslavie separate engine wordpress. And when it will run your plug-in 1.2, for a long time to wait, even ready to throw New Year celebration, and begin testing this miracle. Mailbox you know.
peterverkooijen
ParticipantI don’t see Zenphoto rewriting their excellent, mature script to become a plugin for Buddypress
The ZenphotoPress plugin is actually very effective
Make up your mind.
I’ll explain it one more time so even you can understand; a stand-alone application that has a plugin to interface with WordPress is NOT the same thing as WordPress plugin.
… plugins are not hacks. Plugins are modular.
I never said plugins are hacks. Learn to read. I’m a big fan of plugins, but I prefer plugins that interface with existing, mature applications over plugins with entire applications written from scratch.
Case in point – I want to commit to a Gallery plugin. So let’s say I do and get users to upload thousands of pics. All is well. Dev stops. BP progresses and gallery breaks. I am faced with either correcting myself, finding another and hopefully resurrecting all the images, comments, galleries, etc (prob impossible) or <shudder> asking people to re-upload (not happening) I am ok taking risks but wondered how others deal with this issue (same applies for the seemingly stalled events plugin)
Solution: Use solid, mature stand-alone applications like Zenphoto. If they don’t have an interface plugin with WordPress, write one.
The key word here is ‘was’. If you know anything about WP, then you should know that by now it’s one of the most versatile CMS around.
Sure, functionality is ever-expanding, but the foundation is still blog centered.
BuddyPress does have a way to store 1st name and last name….custom fields …
My point is that they are not built-in, which is weird for a social network. And if you add them as custom fields you have to write your own custom function to get them into wp_usermeta.
But OK people, good luck writing that kick-ass gallery plugin for Buddypress! I won’t be wasting my time on it. I’ll be busy restructuring Buddypress’ crappy registration form.
Anonymous User 96400
InactiveFirst of all, plugins are not hacks. Plugins are modular. That’s what extensibility means. You should know that as an IT journalist. If you use BuddyPress, then, yes, it’s the standard. It’s what your whole site is based on. Use something different if that fits your needs better.
WordPress was for managing posts on a blogThe key word here is ‘was’. If you know anything about WP, then you should know that by now it’s one of the most versatile CMS around.
The Zenphoto solution, not cramming everything into one plugin, is more solid and versatile.Is it just me, or does that not make much sense? You can build plugins that are applications in their own right (except that they need WP). There’s no cramming going on, mate. Only extending…
abcde666
Participant
“So Buddypress is The Standard and everybody else has to adapt?”
no, but WordPress is the Standard.
December 31, 2009 at 1:49 am #59802In reply to: Buddypress hacked by fake users/blogs/posts
peterverkooijen
Participantdfa327 (?) posted this on a splog fighting group wire:
I’ve upgraded my entire site. So far no bad guys:)
I’m up to buddypress 1.1.3 and wpmu 2.8.6.
I got the following plugins to stop spam:
http://wordpress-plugins.feifei.us/hashcash/
http://www.poradnik-webmastera.com/projekty/invisible_defender/
http://www.svenkubiak.de/nospamnx-en
And a few other things to stop it, but I think those are working well above.
Prior to the above I was getting hit by the minute!!!! Now none:)
Haven’t tested them yet. Can’t vouch for them.
peterverkooijen
Participant@Mike Pratt and Bowe, my general point is the same problem Microsoft Windows used to be criticized for; putting too many applications into an operating system while they should have strengthened/secured the core and focused on usability first.
Let 3rd party developers spend time on creating awesome functionalities for our BuddyPress sites which are fully integrated with BPs functions, so we should not have to revert to external scripts and “hacks”.
So Buddypress is The Standard and everybody else has to adapt? I don’t see Zenphoto rewriting their excellent, mature script to become a plugin for Buddypress. So then I would have to hope enthusiastic volunteers will reinvent the wheel within BP.
If Buddypress has a solid core and APIs that make it easy to integrate external scripts, you don’t have to resort to hacks. Modular vs monolithic!
You always claim NOT to be a programmer but have no problem taking shots at the evolution of the core.
I have been an IT journalist for over ten years. I’m not a php programmer, but can sort of follow what the code does and see how the database is structured. Buddypress is built on WPMU which is built on WP and it shows. WordPress was for managing posts on a blog. A social network is for managing people/profiles, but Buddypress doesn’t even a have built-in way to store first name and last name, which immediately becomes a problem when you try to do event registration.
If there’s something available that’s built on BP or WP, then I’d rather use that, even if there are less features. If there’s something that I really need, then I’d just add it myself. I’d actually been thinking of turning NextGEN into a BP plugin.
The ZenphotoPress plugin is actually very effective. After testing both I absolutely prefer the combination of Zenphoto->ZenphotoPress->Wordpress over NextGen->Wordpress. The Zenphoto solution, not cramming everything into one plugin, is more solid and versatile.
peterverkooijen
ParticipantI’ve tested several WP gallery plugins. NextGen is pretty good, but I now use Zenphoto which is much more powerful and versatile.
Zenphoto is a complete stand-alone script, not a WP plugin, althought there is a ZenPhotoPress plugin that makes it easy to integrate in WordPress. I haven’t tried it in Buddypress yet, but it should do 80 percent of what you’d need. If it doesn’t, you could probably write plugins to connect Buddypress to functionality in Zenphoto.
General point: Why would you want to try to cram this kind of functionality into Buddypress plugin? Or even integrate it into the core (shudder…)?
Same thing goes for event registration. If Buddypress had a more straightforward, standard member management structure, integrating any outside event management script would be a lot easier. Please concentrate on the core before adding more bells and whistles!
December 30, 2009 at 6:45 pm #59770In reply to: HELP invite friends and events plugin for bp 1.2
Paul Wong-Gibbs
KeymasterI’ve been driven almost crazy by hearing about “canonical plugins” by the WordPress core team (if you don’t know, see this).
I think a BuddyPress events plugin would be a good project for developers to collaboratively work on in this way. Whether built on Erwin’s code or started new. I can’t help but think that however wordpress.org is redesigned in future to encourage more team-driven plugin development is just going to be BuddyPress with a custom theme! But I digress.
I might be shouting into a funnel again but again if there is another developer or two out there, perhaps we could look into this?
December 30, 2009 at 6:05 pm #59768symm2112
ParticipantThe trac suggestion made a lot of sense but this is what the code is in my header.php. I thought about my situation and the reason I can’t use the global nav option is because with this configuration, the home function seems to work as does the blog slug, but the members, groups, etc all point to sub.domain.com/members, which is obviously wrong since it should be pointing to domain.com/members. I would like to keep the home and blog slugs pointing to where they are, but fix the members and rest of the links to point to my root domain slugs.
<li<?php if ( bp_is_page( ‘home’ ) ) : ?> class=”selected”<?php endif; ?>>” title=”<?php _e( ‘Home’, ‘buddypress’ ) ?>”><?php _e( ‘Home’, ‘buddypress’ ) ?>
<li<?php if ( bp_is_page( BP_HOME_BLOG_SLUG ) ) : ?> class=”selected”<?php endif; ?>>/<?php echo BP_HOME_BLOG_SLUG ?>” title=”<?php _e( ‘Blog’, ‘buddypress’ ) ?>”><?php _e( ‘Blog’, ‘buddypress’ ) ?>
<li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) ) : ?> class=”selected”<?php endif; ?>>/<?php echo BP_MEMBERS_SLUG ?>” title=”<?php _e( ‘Members’, ‘buddypress’ ) ?>”><?php _e( ‘Members’, ‘buddypress’ ) ?>
<?php if ( function_exists( ‘groups_install’ ) ) : ?>
<li<?php if ( bp_is_page( BP_GROUPS_SLUG ) ) : ?> class=”selected”<?php endif; ?>>/<?php echo BP_GROUPS_SLUG ?>” title=”<?php _e( ‘Groups’, ‘buddypress’ ) ?>”><?php _e( ‘Groups’, ‘buddypress’ ) ?>
<?php endif; ?>
I guess these functions are being declared elsewhere but I’m not finding them, even in the functions.php. Any thoughts?
Also, for plugin commander, it’s not so much the plugins that I’m worried about as much as I am wanting to set a standard widget configuration for all sub blogs that get created rather than have them blank on blog creation.
also, on a side not, does anyone know what the wp_content_dir would be on a sub blog? I created a sub blog with a wordpress theme that created thumbnails automatically. The instructions say to upload some folders that it creates them in to wp-content/uploads but obviously there is no wp-content on a sub blog since the files are set to blogs.dir/6. If I put them in that folder, should that read it properly? Is there another variable that I should use to point that to blogs.dir/6/files?
I looked at the bptest.org but I didn’t see anything like the front end I was looking for. Posthaste seems good I just wondered if it was easy/possible to actually put the post box on the site.
Thanks again for all the help.
vanicon
ParticipantYou mean that my office smells of machine translation, it is true. I have been following this plugin and have always wished that he had worked on a simple wordpress, but the Internet was not the solution, and wordpress mu I do not like, and I think the engine for social networking little weak (but this is only my personal opinion) , but the plugin itself buddypress can work wonders, but only for a simple wordpress. Of course we are not standing still and slightly altered this plug-in, hard to write him a simple wordpress, but some errors were, and blogs all set up on a different principle. truth will automatically create them failed, but still worked, did not work for some reason, some functions of the transfer of messages between users and groups, and something else. And when I heard that Andrew has decided that the problem of course, turned here, as at present a couple of projects are not ready, just because of the absence of such plagina.Etot plugin will be needed not only to me but I’m sure many other users. I have already raised this issue at one of the forums and site for translators buddypress into Russian Vyacheslav, and very glad that the problem is finally solved
December 30, 2009 at 7:26 am #59730In reply to: Links don\'t work in Profile Fields
Paul Wong-Gibbs
KeymasterThis is the default behaviour. Have a look at https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/
December 30, 2009 at 6:15 am #59724In reply to: 404 Page Not Found Issues – Mod Rewrite
rahulukil
Participanti m also having the same problem and yet not solved cah anyone help me.
I have installed WordPressmu 2.8.6 and its workin fine all alone now after installing plugin Buddypress 1.1.3 and changing the themes by moving the bp-themes to wp-content/themes except the home page rest all other links are showing…
The requested URL /wordpressmu/linkname(say blog or member) was not found on this server.
404 not found…
What to do?
Plz HElp
December 29, 2009 at 10:57 pm #59705In reply to: 404 Page Not Found Issues – Mod Rewrite
houmie
ParticipantAhh now I understand what the problem is. many thanks for that. My WordPress Mu wasnt actually working in first place, and had nothing to do with BuddyPress.
However the question is; can I – being hosted by GoDaddy Windows Economy – access the config file of the webserver in order to make this little change?

Many Thanks for help,
Houman
December 29, 2009 at 6:50 pm #59692@mercime
Participanthttps://wordpress.org/showcase/flavor/buddypress/
Maybe developers of those sites can be contacted or interviewed to give more info.
-
AuthorSearch Results