Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 18,651 through 18,675 (of 22,683 total)
  • Author
    Search Results
  • #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^

    #74056
    Gianfranco
    Participant

    I was about to write a thread titled “We have our BP site up, should we use Terms Of Service”?

    But since this thread’s here, no need to do that.

    And, the WordPress.com resource is really what I was looking for. At the least as a base to be worked out to fit your particula site.

    Once I customized mine, I will come here a provide the link to my TOS page, and it would be a nice idea if everybody else would do the same, so to share each other’s for inspiration.

    What do you think?

    #74047
    anaon
    Member

    You have to add the _inc folder in your theme folder (Atahualpa) and then, you add the code above to the functions.php file included in your theme.

    It works BUT I just discovered that it adds the “header already sent” error when you edit your wordpress, maybe someone could help us?

    #74042

    In reply to: Fatal Errors

    Jeff Sayre
    Participant

    Was this plugin working before and now it is not? If so, what has changed since then? Did you upgrade WPMU?

    What versions of WP/MU and BuddyPress are you running?

    If you look at the WP Plugin Repository for this plugin, others are having issues with it as well. I would suggest contacting the developer of the plugin and ask when they plan on updating it for the current versions of WP and BP.

    #74017

    In reply to: Badge Maker

    warut
    Participant

    thanks @gregfielding

    @Isddesign you can download here (not approve yet)

    https://wordpress.org/extend/plugins/buddypress-badge/

    @dre1080 after looking group document from web it say can extend plugin to group but not sure about it, may be in the next version if others interested too

    #74009

    How do I enable registration using an existing theme but I have added buddypress and buddypress template pack and I don’t see where to enable registration so people can register and post. How do I set up my theme so people can register and not using the wordpress screen but another form and can also post? This is urgent.

    #73988
    lsddesign
    Participant

    if your running a live site, i strongly suggest NOT to use 3.0 with 1.2.3!!!

    wait for final versions from both WP and BP before upgrading.

    it’s the safest thing to do ;)

    cheers,

    aron

    #73984
    gyonis
    Participant

    Thanks Andrea_r, I’ll try it and see how it goes. I’ll also try to experiment with WordPress 3.0 and some menu plugins and see what’s the best solution and share it with others in here.

    Thanks again.

    #73967
    foxly
    Participant

    First off, I visited your site and confirmed that BP Album+ is working correctly.

    You’re having problems because you’ve modified wordpress to display one URL in the browser while running the actual site on another …this is VERY BAD, because the modification you’ve made only handles *one* of *many* ways plugins generate URLs and file paths. That’s why we had to modify part of the BP Album+ code for you so it would work on your site.

    Modifying BP Album+’s activity stream code to work on your site would be much more difficult. The code gets the base URL from BuddyPress; so we would have to hook the BuddyPress function that does that and modify the URL, and that could break other parts of your installation. It would require testing and debugging, and so on.

    Also, version 0.1.9 of BP Album+ (which I’m taking a break from coding to answer your post) has at least *fifty* different functions that would have to be modified so it would work on your site, which is completely impractical to do.

    Fortunately, you can fix *all* of these problems quickly and easily, have WordPress in a subdirectory, and have the subdirectory invisible in the URL, by properly setting up your web server. :)

    Here’s how:

    http://httpd.apache.org/docs/2.0/vhosts/

    ^F^

    #73963
    Paul Wong-Gibbs
    Keymaster

    is_user_logged_in() is present in both WP and WPMU. Odd. What versions of WordPress/WordPress MU are you using?

    Bowe
    Participant

    You can always install bp later when you have your site up and running, so you can do both. But imo its better to use buddypress from the start because it soul purpose is to built a community with and its a great way to let your members and blog owners interact.. So I include it from the start :-)

    #73955
    agrundner
    Member

    For those interested, the plugin etiviti (rich!) created for this issue can be found here:

    BuddyPress Restrict Group Creation

    https://wordpress.org/extend/plugins/buddypress-restrict-group-creation/

    Terranb
    Member

    So are you saying I’d be better off waiting for both to be out, or could I just do the wordpress 3 beta now, and wait on buddypress compatibility?

    Bowe
    Participant

    Sounds like a plan.. It’s a matter of weeks until WP 3.0 is out, and BuddyPress will be compatible from day 1, so you might want to launch the site when WP 3.0 is out with BuddyPress from the start! Good luck!

    to answer both of your final questions: Yes and Yes!

    #73942

    In reply to: 404 error on bp links

    adiallo
    Participant

    I check my log file and here is the error I am getting

    “WordPress database error Table ‘members.wp_bp_user_blogs_blogmeta’ doesn’t exist for query SELECT * FROM wp_bp_user_blogs_blogmeta WHERE blog_id = 1 AND meta_key = ‘last_activity’ made by edit_post, wp_update_post, wp_insert_post, do_action, call_user_func_array, bp_blogs_record_post, bp_blogs_update_blogmeta “

    After that I reinstall the bp blugin but still I am getting the 404 error

    I don’t know anymore

    Boone Gorges
    Keymaster

    @Erich73 – You can customize the message however you’d like on the Dashboard admin panel. Under Buddypress > Invite Anyone. As for your report about the “Sent Invites” tab – are you sure that you sent group invites along with the email invitations? As @hnla says, make sure you’ve checked the option on the Dashboard panel.

    @dre1080 – I may try to make this work at a later date. If nothing else, I can put in the proper hooks that would allow someone else to build such an extension for my plugin. Stay tuned.

    @everyone – I just put a widget into the development version of the plugin, available at https://wordpress.org/extend/plugins/invite-anyone/download/. If anyone is interested, they can check it out! I want to get a few more new features before tagging a new stable version.

    #73935
    Mariusooms
    Participant

    Nope…it is not dead, but definitely on halt as I am involved with other projects as well. Unfortunately my development for BuddyPress runs in sync with the requirements of our local development for our organization. We are anticipating wordpress 3.0 release and content post types. P2 is category based. At the same time we have other issues that take priority, one of them being integrating outside networks such Facebook and External blogs.

    I wish it was as easy as being able to develop full time, but it just isn’t the case. The project is still on track, but delayed.

    #73908
    jivany
    Participant

    @akingston47: What you’re looking for is basic WP functionality. If you want to see all of the posts for a category, navigate to the category index page/URL like @Jamesmarsland suggested.

    If you want to do this on a page, you need to modify WP “the-loop”. There’s a whack of information on the WP codex about how to do this sort of stuff.

    https://codex.wordpress.org/The_Loop

Viewing 25 results - 18,651 through 18,675 (of 22,683 total)
Skip to toolbar