Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 18,601 through 18,625 (of 22,650 total)
  • Author
    Search Results
  • #74357
    modemlooper
    Moderator
    #74344

    BuddyPress works great with standard regular wordpress version ( wp ) and wordpress multi user version ( wpmu ).

    If you are planning for social networking web site where users can host their own blogs – install buddypress with wpmu.

    #74335

    I believe in solutions – paid or free, it doesn’t matter. People have different needs. Those involved in the BuddyPress community have varying amounts of time that they can spend in the forums or writing plugins, etc. Permitting each other that kind of freedom is where true creativity flourishes, not under some kind of unspoken mandate of the collective. It’s time for the premium theme market and premium plugin market to be treated equally. If you purchase a beautiful WordPress theme that took weeks of design, creativity, and theming, nobody bats an eye. Code is poetry in this same sense. When someone writes a new plugin, his freedom to choose whether or not to sell it or give it away for free is really far more important than the plugin itself.

    Even though we sell premium plugins, we also have loads of free resources and tutorials on our sites and promote all kinds of solutions, both paid and free. If I personally write a plugin, I like to give it away for free. That’s because I’m not a real programmer and I don’t have the ability to provide decent support. However, I fully support the right of extraordinarily talented people like Aaron or Andy or Boone to be paid for writing for BuddyPress or to give it away for free. All that to say that I’m grateful to many people in the BuddyPress community for their hard work, and it is none of my business how they are compensated or not compensated for it. I simply enjoy learning and building together. :) I’m sure that if we could all meet up and have a beer somewhere, we’d have far more mutual respect for the talents and liberties of others. :)

    #74328

    In reply to: Group-Rights Plugin

    3sixty
    Participant

    Hmm, RSS… that is a little complicated. Also another implication I did not think of is the activity stream. If the idea is to restrict access to content, then both the RSS, the activity stream (and the activity stream RSS) have to be considered.

    Before we go down the route of considering another plugin, have you already tried this one?

    https://wordpress.org/extend/plugins/bp-groupblog/

    BuddyPress Groupblog

    Description Installation Screenshots Other Notes Changelog Stats

    Author: Rodney Blevins & Marius Ooms

    The BuddyPress Groupblog plugin extends the group functionality by enabling each group to have a single blog associated with it. Group members are automatically added to the blog and will have blog roles as set by the groupblog admin settings.

    Features:

    Full blog theme integration. The included bp-groupblog theme mimics the group pages.

    WP Admin option to set default blog for groups plus bonus options.

    Automated blog registration at group creation stage.

    Bypass default blog validation to allow dashes, underscores, numeral only and minimum character count.

    Blog privacy settings are initially inherited from group privacy settings.

    Group members are automatically added to the blog.

    Blog roles match group roles as set by the group admin.

    Solid error checking that the blog follows validation.

    Group admin tab to access the group-blog settings.

    Recent posts are displayed on the group home page, much like the forum topics.

    A menu tab is added to display the latest blog activity and blog page links.

    Blog themes will have the ability to pull in group info and create a theme that could resemble the group exactly.

    Leaving the group will downgrade the member role to ‘subscriber’.

    Allow the group admin to select one of his/her existing blogs.

    Known Issues: * Group blog post do currently not show up in the group activity stream. Therefore as a short term solution we are including a custom activity loop on the blog page. This should be fixed in the future.

    Roadmap:

    Allow the admin to let group admins choose the blog name, instead of following the group name.

    Frontend posting from the blog home page.

    Redirect options to integrate deeper with the blog.

    Include an RSS icon for easy access to the Blog’s RSS feed.

    #74318

    In reply to: Group Avatars

    6002845
    Inactive

    No, give me the same error…

    I’m using the last version of wordpress and buddypress.

    #74306
    Mariusooms
    Participant

    WPMU is really gone in a few months or less…afaik WP3.0 is pretty much on track.

    https://core.trac.wordpress.org/milestone/3.0

    Best just wait and spend energy researching new functionality for you to enable Multi Sites in WP 3.0.

    unodewaal
    Member

    I get the same error on multiple sites (using the same host though).

    It’s fine when I have a localhost install, and it’s also fine when I’m not using buddypress.

    I go to the registration page, fill out my details and then click on Complete Sign-up. It then takes me to the same page again, almost as it if just refreshes.

    My registration URL is http://ferryglide.com/wordpress/register

    #74265
    ThomasC
    Member

    Ok, everyone who is having trouble getting twitter to authorize a user. I believe there is a very high chance this is your problem, it solved my problem. My blog would send someone to twitter, ask them to allow authorization, then start the process all over again. Using wordpress MU, my blog is setup to be read at “politicalword.com” and even if I type http://www.politicalword.com, wordpress rewrites it to “politicalword.com”. In my twitter App settings on the twitter site, I had put the callback URL as “www.politicalword.com”, well since my installation was rewriting this to “politicalword.com” the plugin would not authorize any users, even when I clicked allow on twitter, nothing on the site would happen and the process would start over. So BE SURE your callback URL is set to the same URL you have set your blog to be read on. Even the www setting or no www setting affects this!

    Jesper
    Participant

    I tried deactivating Invite Anyone, BP Links and that indeed didn’t matter.

    What could i have done to cause this effect. I’m trying to remeber what I did the last couple of days and can only think of upgrading plugins, but I might have done something else. Ofcourse you don’t know what I did, but maybe there is something that I’ve done that causes this effect you know of?

    Sound kinda stupid I know. A wild shot!

    The error occurs after I hit the next step button here:

    http://nijmegeneet.nl/club/groepen/create/step/group-settings/

    I also get this message from wordpress > WordPress Failure Notice:

    Are you sure you want to do this? Please try again.

    I get this here:

    http://nijmegeneet.nl/club/groepen/create/step/group-avatar

    Any clues?

    #74234
    David Lewis
    Participant

    Well… with regards to SPAM… I’m not certain… but I suspect that’s actually BuddyPress-related. I’ve never had that issue on any of my other WordPress sites. But my BuddyPress sites are rife with SPAM signups. No matter what I do it seems. The only solution I found (after trying literally everything I could find here and at wpmu) was to block all proxy methods.

    #74224
    techguy
    Participant

    Can’t you do something like this?

    <?php

    function login_redirect_activity ()

    {

    wp_redirect (get_option(‘siteurl’) . ‘/activity/’);

    }

    add_action (“wp_login”, “login_redirect_activity”);

    ?>

    The location it redirects to might be wrong. Here’s the reference for the wp_redirect if you want to redirect it somewhere else: https://codex.wordpress.org/Function_Reference/wp_redirect You might have to play with it to redirect to the right place. You also might want to hook it to a different action, but this will hopefully get you closer. I’m still learning this stuff.

    #74222
    Paul Wong-Gibbs
    Keymaster

    You need to distinguish between whether it is a user interface issue, and if it isn’t, where the code/functionality is provided.

    For example, BuddyBar is obviously a BuddyPress user interface feature. The code which is called when a user is marked as a spammer is in WordPress. The code that deletes a spammer’s activity from the Activity Stream is BuddyPress.

    #74212
    MrMaz
    Participant
    #74207
    ajohnson
    Member

    I started with a fresh 3.0 install. Never used any 2.9.anything. So does any have a fixed for the avatars not showing..as mine are being uploaded correctly. See my post two above. Thanks.

    #74206
    Jeff Sayre
    Participant

    The debate of where a particular question should get answered when it comes to WP vs BP is interesting. I used to resort to the “don’t ask here, ask there instead” response. However, with BP becoming very popular, the line is blurred between what is the proper place to ask a question. We have to assume that some BP users might not be familiar with WP, in fact BP might be their first experience with the WP ecosystem. So it is important to be as helpful and friendly as possible.

    If a question is foundational in nature, meaning that it has more to do with the workings of WP and not BP, I’ll often give some help but then suggest that they might get a better, faster response in the WP forums. The bigger issue for me is when someone posts a question that has been answered numerous times but they have not taken the time to do a proper search.

    I also agree that BP is more than just a plugin. I usually refer to BuddyPress as a plugin suite but that never sat quite right with me. BuddyPress is a feature-rich platform as far as I’m concerned. It transcends the idea of a simple WordPress plugin. I have said this before but it’s worth mentioning again. I view many of the BP “plugins” as modules. In other words, they tie into BP extending its functionality.

    @3sixty-

    You seem to keep changing your avatar. I just realized this as I have come to expect the “larval newt” face but then saw the barreleye this morning.

    #74195
    Xevo
    Participant

    BuddyPress is a plugin and like every other plugin, you don’t complain at the plugin because the core isn’t working properly. I get that you have a problem with this concept since I myself am unsure where to go with my question sometime, but if we start complaining about wordpress to plugin writers I’m guessing they’ll stop supporting their plugins.

    #74155
    Sven Lehnert
    Participant

    @All Thanks so much for your feedback.

    I like to make all the template system with the special tags bug free before I add new options. Next step will be to add the missing seo parts.

    What I have:

    1. Add and edit post and page meta data in the WordPress post and page edit screen. (see replay from Anton and Modemlooper)

    2. Meta data letter and word counter, and an option to automatic cat the meta data after ‘n’ letters or words. (Google does not like to long titles / descriptions or to many keywords)

    #74154
    Paul Wong-Gibbs
    Keymaster

    This is a WordPress question as BuddyPress doesn’t provide wp-admin. I suggest you Google or search on the WordPress forums.

    #74123
    3sixty
    Participant

    Can someone give solution that users that wish to sign up dont use buddypress signup page, instead they use regular wordpress signup which is much much safer.

    Hmm, interesting. The generic BuddyPress register form does seem like a bit of a sieve (though it could just be my frustration talking).

    I think you would just delete/disable /registration/activate.php and /registration/register.php. You would lose the ability for users to fill out extended profile fields at signup. However, quick signups are probably preferable, with seasoned users filling out extended profile fields as needed. I’ve read at least one article via delicious.com that suggests to me that signup forms need to be as simple as possible to help users focus on getting “behind the wall” fast and easy.

    #74109
    modemlooper
    Moderator

    @guigoz I noticed that too This plugin is great but it’s missing the option that the normal WP seo plugin has to edit title inside the wordpress page set up for each individual page.

    #74088
    doggybag
    Member

    I am currently running WordPress 2.9.2 and Buddypress 1.2.3

    modified plugin – all working fine

    http://www.barganews.com

    #74084
    Gianfranco
    Participant

    @foxly

    Do you think it is possible to use a redirect rule in .htaccess instead of going with the cPanel option from the video you provided? (I do not have cPanel, and I am on MediaTemple), to have images to doisplay fine in the activity stream?

    Please note that WP itself installed in a subfolder is not a problem (https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory), and URLs are generated without the subfolder. It is the BuddyPress components that generates the subfolder in URLs/permalinks. And that is the reason why I needed this code (who was provided by r-a-y) to get rid of it:

    // Getting rid of the subfolder in URLs/permalinks
    function my_bp_override_core_domain() {
    $domain = get_bloginfo('url');
    return $domain;
    }
    add_filter('bp_core_get_root_domain','my_bp_override_core_domain');

    I believe that as you said, many could be the issues with WP in a subfolder if not handled properly, but I also believe that there are *many* users using a subfolder installation, and probably the core BP should take this into consideration and properly handle one option (root installation) or another (subfolder installation), without having to use workarounds.

    There is an article from Jeff Starr that may be interesting:

    http://perishablepress.com/press/2008/10/06/redirect-subdirectory-to-root-via-htaccess/

    I did try different solutions, but none of them worked.

    But because this is not related only to your plugin, I will probably going to open a thread about the whole subfolder-related topic.

    Still, if you got an answear for me, I am here.

    Thanks.

    #74067

    In reply to: 404 error on bp links

    adiallo
    Participant

    Thank you Boone, I am using standard WordPress installation WP 2.9.2.

    I just did a reinstallation of the plugin deactivate other plugins because I read somewhere it might not be compatible with BP.

    I change also the permanent link but I still cant access the page I get this error now “The page isn’t redirecting properly . the server is redirecting the request for this address in a way that will never complete” .

    Thanks again for helping

    #74065

    In reply to: 404 error on bp links

    Boone Gorges
    Keymaster

    @adiallo – It won’t do you any good to bump your post every few hours. This board isn’t well trafficked enough that you should expect an immediate response.

    If you’re running standard (non-MU) WordPress, then you shouldn’t need the blog tracking feature. I’m not sure why BP is even trying to access wp_bp_user_blogs_blogmeta. When you go to Dashboard > BuddyPress > Component Setup, do you see a Blogs option? If so, disable it and see if it solves your problem.

    If you’re still stuck, try a total reinstallation of BuddyPress. Delete the plugin and reinstall. If you’re *still* having problems, try deleting the plugin, then dropping the tables in the database that start with wp_bp_, THEN reactivating.

    Or am I misunderstanding you and you’re actually running WPMU?

    #74057
    foxly
    Participant

    @gian-ava

    1) You can’t just “switch” from version 0.1.7 to 0.1.9.2, because 0.1.9.2 doesn’t have an upgrade routine (because its a beta). If you install it on a server that already has a 0.1.7 install, all sorts of strange things will happen.

    If you really, really want to upgrade to 0.1.9.2, you’ll have to delete all of your user’s uploaded images, delete all of 0.1.7’s database tables, then install 0.1.9.2; but for systems with existing users that have uploaded a lot of media, it’s probably just better to wait until we put out the next release version.

    2) BP Album+ works just fine when you install WP in a subfolder. The reason it doesn’t work properly on *your* installation is because you’ve used some “hack” posted on the Internet to modify your installation to hide the subfolder from the URL displayed in the browser.

    Guys, there is a lot of VERY BAD advice posted on the Internet about how you can cut and paste code into WordPress to do various things, and a lot of this advice is incomplete or wrong. The hack you’re using only handles *one* way plugins get the base URI, and as you install more plugins you will start to get all sorts of problems.

    If you want to install WordPress in a subdirectory, the correct way to do it is to set it up as a virtual host in your apache config file, or using a redirect:

    Redirect: (OK) http://www.youtube.com/watch?v=pC_HNbly6mI

    Virtual host: (Best) http://www.youtube.com/watch?v=HW2xWJpjKQk

    3) It’s relatively easy for us to make the URI’s to media items in BP Album+ configurable, no matter how somebody sets up a WP installation, if that’s what you guys want.

    …but based on my research so far, we *cannot* fix the problem with images not showing up in the activity stream on WP installs that are a) in a subdirectory and b) not using a redirect or virtual host method of URL shortening, because of the way *BuddyPress* stores activity stream attachments.

    How BP Album+ stores an image URI:

    [$offset] + [ / album / 04 / kittens_15.jpg]

    How the BuddyPress activity stream stores an image URI (last I checked…. I will research this more when I have time):

    [ http://www.example.com/wp-content/blogs.dir/01/album/04/kittens_15.jpg ]

    So when you use a hack to dynamically change your base URI, BP Album+ can handle it (because we dynamically generate the full URI), the BuddyPress activity stream cannot handle it (because it uses a static URI) and the activity stream post items break.

    But the bottom line is, all of this is happening because you haven’t set up your WP installation properly and are using “hacks” off the Internet to mess with your site.

    Set up your WP install properly, and you won’t have problems.

    Thanks!

    ^F^

Viewing 25 results - 18,601 through 18,625 (of 22,650 total)
Skip to toolbar