Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 16,326 through 16,350 (of 26,877 total)
  • Author
    Search Results
  • gregptpt
    Member

    Dear all

    It seems frustrating to find what I thought would be an easy enough to find topic. Maybe I’m searching wrong but here goes.

    After a lot of hours I finally managed to integrate WP and bbPress. I managed to create a link to my bbPress. The final step before i take a break is to create a link back to WP in my bbPress.

    The closest I could find to clear cut directions was here:

    http://bbpress.org/forums/topic/link-header-image-to-wordpress

    I followed the instructions and changed

    <h1>”><?php bb_option(‘name’); ?></h1>

    to

    <a href="http://www.my website.com” "><Back to my website</a>

    and when I get to the forum site there is nothing. No link back to my website.

    (I know it looks weird to have com” “> but somehow without the second ” my bbpress log in, search box, etc gets crammed into the right side of the header)

    Could anyone explain exactly how and where to change this line? Is there anything else I must change? Maybe…

    … it’s because I should omit the “www”?

    … I need to have the “/home” for my website?

    For reference, here’s how my original header.php looks like

    <?php

    $_head_profile_attr = ”;

    if ( bb_is_profile() ) {

    global $self;

    if ( !$self ) {

    $_head_profile_attr = ‘ profile=”http://www.w3.org/2006/03/hcard”&#8216;;

    }

    }

    ?>

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN” “http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”&gt;

    <html xmlns=”http://www.w3.org/1999/xhtml”&lt;?php bb_language_attributes( ‘1.1’ ); ?>>

    <head<?php echo $_head_profile_attr; ?>>

    <meta http-equiv=”X-UA-Compatible” content=”IE=8″ />

    <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />

    <title><?php bb_title() ?></title>

    <link rel=”stylesheet” href=”<?php bb_stylesheet_uri(); ?>” type=”text/css” />

    <?php if ( ‘rtl’ == bb_get_option( ‘text_direction’ ) ) : ?>

    <link rel=”stylesheet” href=”<?php bb_stylesheet_uri( ‘rtl’ ); ?>” type=”text/css” />

    <?php endif; ?>

    <?php bb_feed_head(); ?>

    <?php bb_head(); ?>

    </head>

    <body id=”<?php bb_location(); ?>”>

    <div id=”wrapper”>

    <div id=”header” role=”banner”>

    <h1>”><?php bb_option(‘name’); ?></h1>

    <?php if ( bb_get_option(‘description’) ) : ?><p class=”description”><?php bb_option(‘description’); ?></p><?php endif; ?>

    <?php if ( !in_array( bb_get_location(), array( ‘login-page’, ‘register-page’ ) ) ) login_form(); ?>

    <div class=”search”>

    <?php search_form(); ?>

    </div>

    </div>

    <div id=”main”>

    <?php if ( bb_is_profile() ) profile_menu(); ?>

    #100064
    #105164
    #77087

    In reply to: bbpress and memcache?

    gregfielding
    Participant

    I though I found the solution, reading these threads…maybe it’s an issue with recognizing content types?

    https://wordpress.org/support/topic/batcache-ignores-content-type-header-sends-everything-as-texthtml?replies=3

    http://maisonbisson.com/blog/post/13773/fixing-batcache-to-send-the-correct-content-type-header/

    But this fix didn’t work – just took the memcached served offline.

    TheClue
    Member

    Good morning,

    i’m planning to move my existing wp 3.1.1 network to a multisite installation, while installing a bbpress forum for them;

    the idea is to have the following domain mapping:

    1. blog1.mydomain

    2. blog2.mydomain

    3. blog3.mydomain

    ….

    x. forum.mydomain (it could be like a new ad-hoc ‘fake’ blog, i guess)

    the point is: can i share users and users profile between all subdomains? i know that multisite wp allow this, but what about that _including_ the forum blog?

    before moving in i prefer to be sure it is possible :)

    tnx in advance for help,

    gabriele

    #100061
    Syrinxie
    Member

    Kinda. I’m having issues with User Role Maps not working. But other than that yes. It works fine.

    If you have AIM, leave it and I’ll try to help in anyway I can.

    #105161
    Syrinxie
    Member

    Kinda. I’m having issues with User Role Maps not working. But other than that yes. It works fine.

    If you have AIM, leave it and I’ll try to help in anyway I can.

    Richard Moon
    Member

    I had the same problem. I found a couple of other posts via Google that lead me to the answer. You need to exclude bbPress from being processed by WP Super Cache. This can be done through a configuration setting within WP Super Cache.

    > WordPress Dashboard

    > Settings

    > WP Super Cache

    > Advanced tab

    > Scroll down to “Accepted Filenames & Rejected URI’s”

    > Add here strings (not a filename) …

    I found the following entries in that text box:

    wp-.*.php

    index.php

    I added:

    /forums/

    (My bbPress application is installed under my WordPress directory in the /forums sub-directory).

    Now all URL’s that include the string “/forums/” are ignored in terms of caching.

    Richard

    Richard Moon
    Member

    I had the same problem. I found a couple of other posts via Google that lead me to the answer. You need to exclude bbPress from being processed by WP Super Cache. This can be done through a configuration setting within WP Super Cache.

    > WordPress Dashboard

    > Settings

    > WP Super Cache

    > Advanced tab

    > Scroll down to “Accepted Filenames & Rejected URI’s”

    > Add here strings (not a filename) …

    I found the following entries in that text box:

    wp-.*.php

    index.php

    I added:

    /forums/

    (My bbPress application is installed under my WordPress directory in the /forums sub-directory).

    Now all URL’s that include the string “/forums/” are ignored in terms of caching.

    Richard

    #38105
    Gautam Gupta
    Participant

    Hello everyone!

    I have released the RC 1 of WordPress to bbPress Converter Script. What it does is migrates all your users, converts categories to forums, articles to topics and comments to posts. Currently, it just doesn’t change image shortcodes to image urls and doesn’t preserve the forum hierarchy.

    To use it, download it, put it on your server, edit the script and change the options to appropriate values before the Stop Editing Here part.

    I am soon planning to release a bbPress standalone to plugin converter script if someone doesn’t beat me to it. ;)

    Download: http://code.google.com/p/wordpress-to-bbpress-converter/downloads/detail?name=w2bc.zip

    Thanks!

    – G

    #100060
    logicynic
    Member

    I’ve tried all that already actually (copying the data between the two config files and setting up “bbPress integration” plugin).

    Thanks for the suggestions though.

    Does this mean you’ve managed to get it working successfully with WordPress 3.1.1?

    #105160
    logicynic
    Member

    I’ve tried all that already actually (copying the data between the two config files and setting up “bbPress integration” plugin).

    Thanks for the suggestions though.

    Does this mean you’ve managed to get it working successfully with WordPress 3.1.1?

    #100030
    Syrinxie
    Member

    So I have a fresh install of WordPress and bbPress(latest stable versions)

    Integration is perfect! Admin can login and out on both sides with the same login. Can post, etc etc.

    I created another user to test the role map. I changed the Subscriber/Inactive role in WP to Contributor/Member. Still it did not change in bbPress.

    …I had hoped zaerl was right about it being BuddyPress. It apparently is not BuddyPress causing the problem. Can anyone help?

    #105130
    Syrinxie
    Member

    So I have a fresh install of WordPress and bbPress(latest stable versions)

    Integration is perfect! Admin can login and out on both sides with the same login. Can post, etc etc.

    I created another user to test the role map. I changed the Subscriber/Inactive role in WP to Contributor/Member. Still it did not change in bbPress.

    …I had hoped zaerl was right about it being BuddyPress. It apparently is not BuddyPress causing the problem. Can anyone help?

    #100029
    Syrinxie
    Member

    So I started from scratch, and it seems they were never working. I don’t understand how Buddypress can defunk the role mapping? I don’t even really know if thats what the issue is. I’m going to start over again and do it without buddypress.

    I only wanted Buddypress for the rich profiles and activity stream.

    #105129
    Syrinxie
    Member

    So I started from scratch, and it seems they were never working. I don’t understand how Buddypress can defunk the role mapping? I don’t even really know if thats what the issue is. I’m going to start over again and do it without buddypress.

    I only wanted Buddypress for the rich profiles and activity stream.

    #100059
    Syrinxie
    Member

    I had that issue, and I had to manually paste the data between the config.php files. >.> Also, integrating the two well after actually installation was something I had to do aswell.

    And there is a plugin you should look for in WP, it’s called “bbPress integration” and it tells you whats needed in your config file to share cookies.

    #105159
    Syrinxie
    Member

    I had that issue, and I had to manually paste the data between the config.php files. >.> Also, integrating the two well after actually installation was something I had to do aswell.

    And there is a plugin you should look for in WP, it’s called “bbPress integration” and it tells you whats needed in your config file to share cookies.

    #38096
    logicynic
    Member

    Hi,

    I’m trying to integrate bbPress 1.03 into WordPress 3.1.1. I’ve followed all the instructions but I can’t seem to get the cookie integration to work. Before I hack away at it I thought it would be worth asking whether this is a known issue?

    Thanks.

    #100038
    Gautam Gupta
    Participant

    Where have you put the script? Put it in the root and also check if /forums2/bb-load.php exists.

    #100037
    web2m
    Member

    Hi Gautam, I have the converter installed, but have a quick question for you.

    My wordpress is in the root directory, my bbpress forums are in

    http://www.sitename.com/forums2

    Here is the part of your code:

    define( ‘W2BC_WP_PATH’, ” ); /** With Trailing Slash, if required */

    define( ‘W2BC_BB_PATH’, ‘/forums2/’ ); /** With Trailing Slash, if required */

    define( ‘W2BC_CONVERT_PINGBACKS’, true ); /** Convert pingacks too? true or false */

    *** Continue my question ***

    I keep getting “bbPress loader file (bb-load.php) doesn’t exist in the path specified!”

    I have tried defining the w2bc_bb_path to ./forums2/ I have left it as the default like you had it and I have tried it as it is in the example above … it still tells me the path doesn’t exist

    Could you let me know what path I need to define, if my forums are located at

    http://www.sitename.com (this is where wordpress is installed)

    http://www.sitename.com/forums2 (this is where my bbpress is installed)

    Thank you again for the help and for the file. I am hoping I can get it to work:-)

    #38091
    bryzo
    Member

    I would like to pull profile data for users and place it on their post under their avatar. How can I do this?

    How could I do it if the data is stored in WordPress?

    #100036
    web2m
    Member

    Awesome, thank you very much Gautam for your help!

    olek12
    Member
    olek12
    Member
Viewing 25 results - 16,326 through 16,350 (of 26,877 total)
Skip to toolbar