Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 30,776 through 30,800 (of 32,678 total)
  • Author
    Search Results
  • dyasar
    Participant

    Hi,

    Is there a way to disable wpmu-domain linking?

    It makes us very very inefficient.

    Here is why;

    We have wordpress MU on .x.com we setup dev.x.com. As you know for a perfect staging environment we need user sandboxes run from *.dev.x.com.

    Currently each and every developer has to ‘install’ wpmu before they start working on it, since we work with buddypress, it requires us to spend 8 hours per developer/intern to setup their sandbox.

    Obviously, we set up wpmu to use x.com/user type of blogs.

    I’d very much appreciate if you can tell me how I can change domain names without caring about what wpmu will think about it.

    If this requires some hours of work, we can hire you to do it, just let me know.

    Best,

    D

    #49638

    There are plugins to allow easy user switching, and I think that would be your safest bet. This way they can just create users in the admin area with new email addresses, and switch to being that user without logging in or out.

    Because WordPress uses email addresses for verification and authentication purposes, it can’t really have the same email address multiple times safely.

    #49636

    In reply to: Forum Integration…

    José M. Villar
    Participant

    To begin with, I would start by following these tutorials:

    https://buddypress.org/forums/topic/bp-103-and-bbpress-which-version-plugins-cookies

    http://theeasybutton.com/blog/2009/07/17/integrating-buddypress-wordpress-mu-and-bbpress/

    BTW, regarding user mapping, the only setting I changed was WP Admin one, mapped to bbPress Key Master. The other four settings remain untouched.

    #49631
    thebloghouse
    Participant

    Just launched a new BuddyPress based site for a client who was running a normal WordPress based site before hand:

    http://sharemyplaylists.com/

    The site has been set up as a music community site for people who use the music service Spotify and want to do more than ‘just’ submitting their playlists.

    Lots of issues and things we have learnt about BuddyPress, WordPress MU etc during the delelopment and hopefully now the site is launched we might have more time to get involved answering questions on these forums rather than asking them ;)

    #5882
    3572699
    Inactive

    I have a fresh install of wordpress mu 2.8.1 and I have installed the latest buddypress plugin. When I try to activate plugin, I get the following warnings/ fatal errors:

    Warning: main(/html/wp-content/plugins/buddypress/bp-core/bp-core-catchuri.php) [function.main]: failed to open stream: No such file or directory in /html/wp-content/plugins/buddypress/bp-core.php on line 25

    Warning: main(/html/wp-content/plugins/buddypress/bp-core/bp-core-catchuri.php) [function.main]: failed to open stream: No such file or directory in /html/wp-content/plugins/buddypress/bp-core.php on line 25

    Fatal error: main() [function.require]: Failed opening required ‘/html/wp-content/plugins/buddypress/bp-core/bp-core-catchuri.php’ (include_path=’.:/usr/local/php-4.4.8-1/share/pear’) in /html/wp-content/plugins/buddypress/bp-core.php on line 25

    Any ides what could be going on here?

    #5876
    bigmizar
    Participant

    Hi,

    I’m a new member in Buddypress forums.

    I just installed WordPress MU 2.8.1 for a social networking project I’m starting right now. It’s my third project with WordPress and Buddypress (really good web-software by the way).

    After installing WP, the first thing I decided to install before starting to hook WP functionalities was Buddypress (v1.0.3). I did a site wide activation and here’s the message I received from WP:

    “Plugin could not be activated because it triggered a fatal error.”

    But Buddypress is activated and seems to be working fine. All tables have been created in database. I’m just asking myself if I’m the only one getting this error… :)

    #49600
    Jeff Sayre
    Participant

    Read this (especially the section on %category%): https://codex.wordpress.org/Using_Permalinks#Using_only_.25postname.25

    #49599
    Jeff Sayre
    Participant

    Well, you could either delete them from BuddyPress core (not a good idea), or unregister them in your theme’s functions.php file.

    https://codex.wordpress.org/WordPress_Widgets_Api/unregister_sidebar_widget

    #49593
    Jeff Sayre
    Participant

    Are you running WordPress or WordPress MU?

    #49591
    Jeff Sayre
    Participant

    Which version of WordPress Mu are you running? Which version of BuddyPress?

    nnewell
    Participant

    I’ve gone through all the setup successfully to get BBPress installed in teh same database as WPMU.

    But when I add the final section (see below) to my wp-config.php file, the logged in session gets confused. Once I log in to the wordpress site , I am fine, but cant log out. I’m also not able to get to the WPMU Dashboard. Also my BBPress site still prompts me to login.

    To recover, I am force to comment out the below in the wp-config.php file

    /* ADDED FOR BBPRESS COOKIE INTEGRATION

    define( ‘COOKIEHASH’, ‘#myhash#’ );

    define( ‘COOKIE_DOMAIN’, ‘#.mydoamin.com#’ );

    define( ‘SITECOOKIEPATH’, ‘/’ );

    define( ‘COOKIEPATH’, ‘/’ ); */

    The installation seem to work just fine, added all the salts, and plugins. But just cant seem to find the issue here.

    #5868
    Lriggle
    Participant

    I know WordPress has a list of conditional tags available in their system (http://codex.wordpress.org/Conditional_Tags ). Is there a similar list for the ones that were created for use in BuddyPress?

    Thanks!

    –Lisa

    #49578
    peterverkooijen
    Participant

    I am now going through the How to Write a WordPress Plugin tutorial on DevLounge.net.

    It says you can hook into WordPress to execute pieces of code using WordPress actions. I assume in my case I should use this action:

    register_post

    So I should write a function that somehow forms and executes that URL – http://mysite.com/…/listmessenger.php?etc. – and trigger that on registration using register_post?

    And to construct the function I can use WordPress filters? The available ‘database writes’ filters are only for WordPress tables of course…

    How would I add data to tables outside WordPress, in this case the ListMessenger tables?

    Edit 1: Stupid question; that is done by that URL created by $post_data=… in the PHPList code.

    Or is there a better way to add data to the database directly from the plugin?

    Edit 2: This page has more information on creating/updating tables outside regular WordPress. Would that approach be better than that URL?

    #49577
    Andy Peatling
    Keymaster

    As per the instructions, you must be running WordPress MU 2.8.1 for BuddyPress 1.0.3 to work.

    peterverkooijen
    Participant

    I need to integrate my mailing list with Buddypress registration. In the current version of my site I use ListMessenger; when someone registers with the site their name + email address is also automatically added to a mailing list.

    ListMessenger can’t tap into existing WordPress users tables in MySQL, it has its own users table. The integration challenge is to keep them somewhat synchronized; add name + email address to ListMessenger’s users table to start with, but it would be nice if changes in name + email address would also be synchronized with the ListMessenger data.

    I’ve tried to use this plugin as a starting point: WordPress PHPList Dual Registration.

    I started this thread about it on the ListMessenger forum.

    The key apparently is to get the plugin to execute (?) the following URL on registration:

    http://mysite.com/mailinglist/public/listmessenger.php?group_ids[/url][]=1&email_address=random@whatever.com&firstname=John&lastname=Smith

    …which could be achieved by a line like this in the plugin:

    $post_data = 'action=subscribe&group_ids[]='.$this->lid.'&email_address='.$this->email_id.'&firstname='.$this->name_id;

    So far I have not been able to make that work. :-(

    The next few days I’ll try to learn how to write a plugin for WordPress, but I need all the help I can get. I’m not a programmer, but after messing with this stuff for ten years I have some general ideas how things work. I will need help on things like what are the right names for what, where to find information and code examples and how to get syntax etc. right.

    Integration is further complicated by Buddypress lack of consistency in storing firstname + lastname, which I have complained about a lot in this forum – sorry…

    I post this issue here and not on the WPMU forum because adding members to a mailing list really is a social networking function and it needs to work with Buddypress’ registration and xprofile etc.

    #49563
    Trekkiemelissa
    Participant

    Hi, I want to integrate IPB 3 with wordpress too. My thing may be a bit different though. What I want to do is instead of using bbpress for the group forums, I would love for it to use ipb 3 instead. Is there any way of supporting ipb with buddypress? I have been looking for a while a way to do that.

    #5860
    ericc22
    Participant

    Greetings,

    I have a site on WordPress: http://www.Padosa.com.

    I want to add Buddypress to replace vbulletin.

    Before I commit by switching to WPMU, a few questions just to confirm I am doing the right thing:

    – all I have found suggests that the consolidation and WP and WPMU is down the road – it is not imminent?

    – what are the downsides of switching to WPMU? I don’t need for users to create blogs – just need to use buddypress. Any issues with plugins?

    – how quirky is buddypress?

    Any feedback on making the transition is most appreciated!

    Eric

    #5857
    Rahul Sonar
    Participant

    When I use custom permalinks, the blog link on home page does not work. If I use any other permalink suggested by wordpress, it works.

    any idea? I am using %category%/%postname%/

    site is our-engagement.com

    Graeme
    Participant

    I have finally been able to duplicate the installation.

    Here’s a relatively complete set of steps for guidance. This took me several hours to prepare and it can be easy to make a stupid error along the way. Just take it slow.

    These steps are for WordPress MU 2.8.1, bbPress 1.0.1 and buddyPress 1.0.3.

    1. Download and install WordPress MU 2.8.1

    2. Install the “bbPress Integration” plugin version 1.0 via the “Plugins” -> “Add New” menu of your wordpress mu installation.

    In the search box enter ‘bbPress Integration” and click “Search Plugins”.

    Click the “Install” link for the “bbPress Integration” version 1.0 plugin.

    Click the orange “Install Now” button.

    Click the “Activate Plugin” link.

    3. Download and install bbPress 1.0.1 in a sub-directory of your wordpress installation.

    I chose the sub-directory “/forums/”.

    4. Load up the bbPress installation script by going to http://<yourdomain>/forums/

    5. Click “Go to step 1”.

    6. Enter the database name, database user and database password that you used for your wordpress installation.

    You will not usually need to click “Show advanced settings”.

    7. Click “Save database configuration file”.

    You should see a message “Your settings have been saved to the file bb-config.php. You can now continue to the next step.”

    8. Click “Go to step 2”.

    9. Next you add the integration settings. This is the important part!

    – click “Add integration settings”

    – click “Add cookie integration settings”

    – you will be presented with a list of eight text entry fields

    – the first two are for your wordpress and blog url. For each of these enter your exact urls. I just used the same value for each. They need to commence with http://

    – for all the cookie values just enter “COMMENT OUT”. These will become reference points in the bbpress config file for later.

    10. Click “Add user database integration settings”. This step is also important!

    Leave the existing value in the “User database table prefix” field.

    Enter the WordPress Primary blog id value “1” – THIS IS IMPORTANT.

    11. Click “Save WordPress integration settings”

    If all is well you should see this message.

    Your WordPress integration cookie and database settings have been successfully validated. They will be saved after the next step.

    Once you have finished installing, you should visit the WordPress integration section of the bbPress admin area for further options and integration instructions, including user mapping and the correct cookie settings to add to your WordPress configuration file.

    12. Click “Go to step 3”.

    – enter your site name

    – enter your site url. I entered the url to the forums including the http://

    e.g. http://bp.dev/forums/

    – select the “admin” user for your wordpress installation

    – enter a name for your first forum e.g. “Announcements”

    13. Click the “Save site settings” button

    14. Click the “Complete the installation” button

    15. You should see a screen indicating installation has completed.

    – click the “Show installation messages” option. Scroll through and see of any errors are reported.

    16. At this point you should be able to login to your bbpress installation with your wordpress admin username and password.

    17. Login to bbPress

    18. Click the “Admin” link to go to the admin screen

    19. Go to “Settings” -> “Writing” and enable XML-RPC publishing protocol (this is needed by buddyPress)

    20. Go to “Settings” -> “Discussion” and enable pingbacks (I think this is needed by buddyPress ….?)

    21. Go to “Users”

    22. Go to “Settings” -> “WordPress Integration”

    Set the mapping of bbPress roles to WordPress users roles

    For the WordPress Administrator role select “bbPress Key Master”.

    For all the others select “bbPress Member”.

    Click “Save Changes”

    23. Login to WordPress MU as the admin.

    24. Go to “Plugins -> Add New”

    25. Enter “bbPress Integration” and click “Search Plugins”.

    – you should see “bbPress Integration” 1.0 listed

    – click “install”

    – click the orange “Install Now” button

    – click “Acrivate Plugin”

    26. Go to “Settings” -> “bbPress Integration”

    Ensure there is a full url for the bbPress forums entered.

    Select WordPress type “WordPress MU”

    Click “Save Changes”

    Copy the values listed in the dark grey box at the bottom of your page into your clipboard. There will be four lines that look something like this:

    define( ‘COOKIEHASH’, ‘da4672dda66fd60a6b80e420d32ef26c’ );

    define( ‘COOKIE_DOMAIN’, ‘.bp.dev’ );

    define( ‘SITECOOKIEPATH’, ‘/’ );

    define( ‘COOKIEPATH’, ‘/’ );

    Don’t worry – these values will be different for your installation.

    Open wp-config.php in an editor and insert these lines immediately after the opening “<?php” line.

    Whilst you have wp-config.php open, copy the authentication keys to your clipboard. They look like this:

    define(‘AUTH_KEY’, ‘800345c011dfad9261cedec0a3d914ffa1b40d67b23b66e4809797ce728f0b80’);

    define(‘SECURE_AUTH_KEY’, ‘5d6d3f657c9fb496e3f5488044fc174c238554a1b5347eb633ea8baecf0dcc7c’);

    define(‘LOGGED_IN_KEY’, ‘6749832494719d8217e06c233326cb86da9ec040b16f705156660e1642a5f0e8’);

    define(‘NONCE_KEY’, ’87a5b149e95e0a13020541040353548eaf65b68452be91c685e96a7fbab685bc’);

    define(‘AUTH_SALT’, ‘8ff197cc15f311c975bd14ce131e7872eb390706bd316f72435c081836d14f34’);

    define(‘LOGGED_IN_SALT’, ‘642683992ae38da46082bf9850ab90273deb7d5d1034baf80a3fd32871b5e04a’);

    define(‘SECURE_AUTH_SALT’, ‘7c066b9c14bd558737b74b76c77f928e3612935832a6a47bd70842e118c947fa’);

    They will be different for your installation.

    Save wp-config.php

    27. Open bb-config.php

    Find the lines containing the Authentication Unique Keys. They will have the values “COMMENT OUT” if you followed the instructions above. Comment these lines out!

    Insert the lines from your clipboard into bb-config.php below the lines you commented out.

    You need to edit each line you inserted and prefix the name of each constant with “BB_”

    After doing that, the lines will be something like:

    define(‘BB_AUTH_KEY’, ‘800345c011dfad9261cedec0a3d914ffa1b40d67b23b66e4809797ce728f0b80’);

    define(‘BB_SECURE_AUTH_KEY’, ‘5d6d3f657c9fb496e3f5488044fc174c238554a1b5347eb633ea8baecf0dcc7c’);

    define(‘BB_LOGGED_IN_KEY’, ‘6749832494719d8217e06c233326cb86da9ec040b16f705156660e1642a5f0e8’);

    define(‘BB_NONCE_KEY’, ’87a5b149e95e0a13020541040353548eaf65b68452be91c685e96a7fbab685bc’);

    define(‘BB_AUTH_SALT’, ‘8ff197cc15f311c975bd14ce131e7872eb390706bd316f72435c081836d14f34’);

    define(‘BB_LOGGED_IN_SALT’, ‘642683992ae38da46082bf9850ab90273deb7d5d1034baf80a3fd32871b5e04a’);

    define(‘BB_SECURE_AUTH_SALT’, ‘7c066b9c14bd558737b74b76c77f928e3612935832a6a47bd70842e118c947fa’);

    Save the file and exit.

    28. Clear cookies and Refresh for your domain. In Firefox you can clear cookies for a specific domain pattern.

    29. Login to your wordpress installation as the wordpress admin user.

    30. Assuming you managed to follow the setps above, If you go to your bbPress page you should find that you are logged in!

    31. From WordPress Admin go to “Plugins” -> “Add New”

    – in the search box enter “BuddyPress” and click “Search Plugins”

    – find BuddyPress 1.0.3 in the list

    – click “Install”

    – click the orange “Install Now” button

    – click “Activate Plugin”

    32. BuddyPress is now installed. Follow the BuddyPress instructions for installing the themes to the correct locations and activate them.

    33. In wp-admin go to “BuddyPress” -> “Component Setup” and check that the “bbPress Forums” component is enabled.

    34. In wp-admin go tp “BuddyPress” -> “Forums Setup”

    – ensure that the URL for the forums is entered

    – ensure that the bbPress username and password details have been setup

    – click “Save Settings”

    35. Create a group with option selected for a forum.

    36. Check that you can post topics in the group forum!

    37. Take a break!

    #5852
    KevinHeath
    Participant

    I wish to use the latest version of BP but I am unable to upgrade MU in order to do so.

    I know this isn’t an BP support issue, but I get good responses here.

    Anyway, when I try to upgrade MU I get:

    Downloading update from http://mu.wordpress.org/wordpress-mu-2.8.1.zip.

    Unpacking the update.

    Could not copy files.

    Installation Failed

    What could cause this? Is it a permissions thing?

    Graeme
    Participant

    Unfortunately, I’m having trouble duplicating the installation.

    For my sucessful installation, bbPress presented me with a “dropdown” list allowing me to select the keymaster user. I then picked my WordPress admin user. It all worked well from there.

    For the duplicate installation the bbPress installer shows text fields for entering the “keymaster” user details.

    This process is painful!

    #49528
    Graeme
    Participant

    I have been able to successfully install and configure the following as a clean installation:

    WordPress MU 2.8.1

    bbPress 1.0.1

    BuddyPress 1.0.3

    I will post a *rough* outline of the steps for the installation. My installation is on a test server (Mac running php 5.3.0 under xampp ??? beta)

    You need to get WordPress 2.8.1 and bbPress login integration working successfully first.

    I’ll try and duplicate the installation and then post instructions. It should be relatively straightforward once you know the tricks.

    #49525
    Paul Wong-Gibbs
    Keymaster

    Using $() in wordpress will call Prototype’s implementation, so you gotta use jQuery yeah or call that noconflict function (don’t know if doing it this way has an other implementation issues).

    #49521

    It is my experience that using deep integration can cause some issues with duplicate jQuery inclusions, but this is usually only on the bbPress side, not on the BuddyPress side.

    WordPress 2.8.1 uses a new version of jQuery. I’ve ran into this as an issue mostly when there is either a JS error, or a conflict of some kind in the files. Can you verify for me that the jQuery file itself is being included correctly in the head area when viewing the directory page?

    #49514

    In reply to: Dashboard skin

    adrinoe
    Participant

    If u want social networking funtion within the dashboard, there’re wpmu plugins to enable friends and messages rather than using buddypress.

    What is this plugin , i can’t find this plugin in wordpress.org

Viewing 25 results - 30,776 through 30,800 (of 32,678 total)
Skip to toolbar