Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 20,951 through 20,975 (of 22,658 total)
  • Author
    Search Results
  • Paul Wong-Gibbs
    Keymaster

    BP 1.0.3: https://wordpress.org/extend/plugins/bpgroups

    Future versions: forum integration method has changed totally, I’m not sure and I haven’t tested if the above is still necessary.

    #52074
    fuzzyman
    Participant

    Hi all

    I’m experiencing the same two issues ( alphabetical list does not list any users, and the message ‘No members found. Members must fill in at least …..’)

    The member search facility on the Members page also does not work for me.

    Using WordPress MU 2.8.4 + BP 1.0.3. Clean install, have never re-installed or deleted anything off the site yet.

    One thing that ‘may’ make a difference is that I’m running Normal WordPress as my main, publicly viewable site, and the WordPress MU in a subfolder off the root. The database table names are different though, so I doubt there’s a conflict. For the standard WordPress install I used ‘wp2_’ as the table prefix.

    r-a-y
    Keymaster

    Glad I could help out!

    dakoo
    Participant

    Thanks a lot ‘r-a-y’ Works like a CHARM !!

    #52057
    Paul Wong-Gibbs
    Keymaster

    BuddyPress 1.0.3+ requires WordPress MU 2.8+

    #52053
    Matt Kern
    Participant
    #52049
    Paul Wong-Gibbs
    Keymaster

    Until you posted this thread was 8 months old. You can localise BuddyPress in the same standard way which you do WordPress. I am aware someone has a new plugin in the works which, despite me not fully understanding what it does, sounds like it will be useful to run multilanguage BP sites.

    In the interim, however, I’m closing this thread. If you want to continue to discuss any specifics please find a more recent thread or start a new one.

    #52045
    Paul Wong-Gibbs
    Keymaster

    I don’t think anyone has tried anything like BP-Mu, and I am very doubtful that the internals would support such a thing without serious hacking.

    BuddyPress *does* use the existing WordPress user tables/routines, etc. I have no idea what you mean by “separate user system.” You can just remove the BuddyPress /register files and use the WPMU user registration.

    There’s no guarantee BP 1.1 will be released next week. Soon, but I’d advise not getting your hopes up.

    As far as I’m aware, there’s no issues with running BP on a blog ID other than 1. If you want to be certain, download the current trunk copy and test it out; it’s not too late for bug fixes to go in.

    r-a-y
    Keymaster

    If their content is from another WordPress blog, then it is possible.

    You’ll want to look up WordPress to WPMU guides.

    Here’s one that I’ve used in the past:

    http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/

    #52037
    r-a-y
    Keymaster

    Looks like there is a WordPress URL hack going around:

    https://wordpress.org/support/topic/307660

    Otto over at the WP forums suggests to upgrade as soon as possible, but I haven’t seen any reports on the WPMU forums yet.

    #52035
    cpkid2
    Participant

    Here is a plugin that uses an smtp server for sending email from WordPress MU blogs. Would this be a viable solution?

    http://wpmudev.org/project/wordpress-mu-cimy-swift-smtp

    #52030
    peterverkooijen
    Participant

    Correction to the code above: In most cases it’s probably safer to just remove this from the INSERT query for ‘mailingusers’ (or whatever your mailing list uses):

    users_id='$user_id',

    In ListMessenger this ID is incremental. If you force it take the same ID as used in WordPress you may get nasty errors.

    #52018
    peterverkooijen
    Participant

    2000 insert/deletes. It’s gonna be a long night… ;-(

    Is inflate the technical term?

    Found this somewhere:

    If you just want to change the auto_increment without deleting everything, you can

    ALTER TABLE tbl_name AUTO_INCREMENT = xxx

    (where xxx is an integer). Or use the operations page in phpmyadmin …

    But what table(s?) should I apply that to? Only wp_users? Would the rest automatically follow?

    Scary stuff

    #52017
    Paul Wong-Gibbs
    Keymaster

    You can’t change the ID column in the wordpress users table as it’s an autoincrement field. MySQL might have some docs on the site if it’s possible to inflate it. Failing that, do a load of inserts / deletes and bump the number up ;)

    #52013
    Jeff Sayre
    Participant

    https://codex.wordpress.org/Changing_The_Site_URL

    But before you do anything, fully back up your WPMU MySQL DB ( https://codex.wordpress.org/Backing_Up_Your_Database )

    #51992
    r-a-y
    Keymaster

    Hey gyonis,

    For #1:

    You’ll want to turn off blog registration and also set the default user role in WPMU to be “author”; that way everyone will be able to make a post on the root blog.

    You can do this by going into your WPMU admin area and navigating to “Site Admin > Options”. Set “Allow New Registrations” to “Only user account can be created”. And set “Dashboard User Default Role” to “Author”.

    For #2:

    You’ll want to use some type of customized post screen plugin such as Flutter or my personal favorite Custom Field Template.

    That should get you going!

    You might also want to read this thread which talks about how to create a community blog.

    #51990
    Paul Wong-Gibbs
    Keymaster

    The reason you have not found much on this on these forums, is because this questions are in WPMU’s domain. Have a search on their forums as these components aren’t provided or controlled by BuddyPress.

    #51980
    David Lewis
    Participant

    Yah… always best to use unordered lists for navigation. It just makes the most sense semantically speaking. Once you have your navigation being output as nested lists… there are any number of CSS/JS solutions to hide the nested lists and turn them into drop downs. The most lightweight solution is the old tried and true suckerfish menu… which is pure CSS with just a teeny tiny bit of javascript code to make it work in IE. But since jQuery is already included in WordPress… may as well go with something a little more fancy… with a mouseout delay… etc.

    #51977
    r-a-y
    Keymaster

    You’ve probably already tried removing and re-adding the Text widget, right?

    The default text widget should always work… but you should check out the WordPress forums to see if anyone has a similar problem, since it’s more of a WP issue than a BP thing.

    Do any other tags work besides P and BR in the Text widget?

    One other thing to note is if you have any filtering plugins activated, that could affect the widget output, but it’s highly unlikely.

    #51975
    dwpers
    Participant

    Oh ok. Do you know why the text/html widget that also comes with wordpress does NOT work as intended? It won’t even include the automatic p tags when enabled.

    Thanks DJPaul

    I’m running WPMU 2.8.4a and BP 1.03.

    #51967
    peterverkooijen
    Participant

    Here is a clearer example.

    jQuery comes with WordPress, but remember to change $ to jQuery in the javascript, like this:

    jQuery(document).ready(function(){
    jQuery('li.headlink').hover(
    function() { $('ul', this).css('display', 'block'); },
    function() { $('ul', this).css('display', 'none'); });
    });

    It’s to prevent clashes with other javascript libraries.

    #51960
    r-a-y
    Keymaster

    Hey chargertech,

    I’m guessing BuddyPress wouldn’t work for a sub-blog on WPMU, which is what I’m guessing you want it for.

    You could try defining the BP_ROOT_BLOG in /plugins/buddypress/bp-core.php to the blog ID in question, that could work… although I’m not entirely sure.

    You could also try Alkivia as an alternative – https://wordpress.org/extend/plugins/alkivia/

    #51940
    cpkid2
    Participant

    actually the log out problem is gone now. the only problem i have is that users don’t get the registration/activation email. here are the answers.

    1. Which version of WPMU are you running?2.8.4

    2. Did you install WPMU as a directory or subdomain install? directory

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgraded from a previous version of WPMU? If so, from which version? no

    5. Was WPMU functioning properly before installing/upgrading BuddyPress? don’t know, i installed both one right after another

    6. Which version of BuddyPress (BP) are you running? 1.0.3

    7. Did you upgraded from a previous version of BP? If so, from which version? no

    8. Do you have any plugins other than BuddyPress installed and activated?

    -ajaxed wordpress

    -akismet

    – all in one seo pack

    – contact form 7

    – events calendar

    – google xml sitemaps

    – login with ajax

    – more privacy options

    – page links to

    – register plus

    -remove buddypress admin bar

    – sociable

    -tweetmeme button

    – wordpress database backup

    -wp postratings

    9. Are you using the standard BuddyPress themes or customized themes? customized

    10. Have you modified the core files in any way? no

    11. Do you have any custom functions in bp-custom.php? no

    12. If running bbPress, which version? no

    13. Please provide a list of any errors in your server’s log files. how do i check?

    Also, I don’t know if this is relevant but hosting is through GoDaddy.

    #51922
    Jeff Sayre
    Participant

    How can i enable intensedebate plugin for all the blogs sitewide.

    Looking at the WP plugin repository for this plugin, it does not indicate that it is meant for WPMU.

    Doing a quick Google I found this discussion on the IntenseDebate blog:

    New Customization Options

    Go 7 or 8 comments down and you’ll see this reply from Beau Lebens:

    BuddyPress runs on a WPMU install, and ID is currently in use on a number of WPMU sites. There’s currently no way to “auto-activate” it for every blog created, but you can definitely activate it (and go through the install process) for each different blog you create on a WPMU install.

    #51921
    Jeff Sayre
    Participant

    First, always read the “readme.txt” file before proceeding with any WPMU or BuddyPress upgrade.

    Before installing BuddyPress from trunk, you need to make sure that you are running WPMU 2.8.4a. If not, you need to deactivate all WPMU plugins, upgrade WPMU, and then try again. The latest WPMU version can be found here.

    Once you’ve installed BuddyPress, make sure you move the theme files into their proper location.

Viewing 25 results - 20,951 through 20,975 (of 22,658 total)
Skip to toolbar