Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 49,176 through 49,200 (of 64,471 total)
  • Author
    Search Results
  • #78394
    chrishajer
    Participant

    I have the same trouble. The feed is invalid. The » in the feed description is the problem. This came up here recently:

    https://bbpress.org/forums/topic/all-rss-feeds-broken#post-55730

    #78334
    Chris2
    Member

    Hi again. I downloaded it from: http://www.bbpressthemes.net/ and it was in the header.php

    Regards

    #78381
    gerikg
    Member

    postimage makes some scripts for some forums. I requested for BBpress but I think it’s a low demand. Look here: http://www.postimage.org/mod.php

    #31573
    Randolf
    Member

    Hi all,

    Recently, I installed WordPress (2.8.3) and bbPress (latest stable 1.0.2). The integration of users works correctly, but not the single sign on not work.

    I can register in blog and the user it´s created in both and viceversa.

    But i can´t logged in in both at the same time.

    I have installed the plugin bb Integrationi in WordPress, and AUTH KEY, AUTH salt, etc… same in both config files, same in admin dashboards and add the COOKIEPATH in the wp-config…

    When I login in, in any of them, 6 cookies are created: (????? are letters and numbers, same in all the cookies)

    Name: wordpress_3f168778f6e6312b92518?????faf17d
    Content: admin%7C1251289349%7C5b5f99919dde2ab?????cf3fffd153d3
    Path: /bbpress/bb-admin

    Name: wordpress_3f168778f6e6312b92518?????faf17d
    Content: admin%7C1251289349%7C5b5f99919dde2ab?????cf3fffd153d3
    Path: /bbpress/bb-plugins

    Name: wordpress_3f168778f6e6312b92518?????faf17d
    Content: admin%7C1251289349%7C5b5f99919dde2ab?????cf3fffd153d3
    Path: /bbpress/my-plugins

    Name: wordpress_3f168778f6e6312b92518?????faf17d
    Content: admin%7C1251289349%7C5b5f99919dde2ab?????cf3fffd153d3
    Path: /wp-content/plugins

    Name: wordpress_3f168778f6e6312b92518?????faf17d
    Content: admin%7C1251289349%7C5b5f99919dde2ab?????cf3fffd153d3
    Path: /wp-admin

    Name: wordpress_logged_in_3f168778f6e6312b92518?????faf17d
    Content: admin%7C1251289349%7C636047d6d7482fbd45
    1a89aeb9 (different hash)
    Path: /

    With the steps of this post, all is same… :(

    Any idea about what its wrong?

    #31572
    Sven Lehnert
    Participant

    If I click on RSS feed for this topic or try to use my rss reader I get an error and the rss feed is not shown correctly.

    #76080
    Touch
    Member

    AWESOME!!! Finally a SMTP plugin which works!!

    Cimy swift SMTP for bbPress Highly Recommended.

    #78056

    Thanks – Works for me too! Really appreciate it.

    If I may not be tedious – but I am just getting started and appreciate the help.

    Is there some documentation that will show me how to get a menu to be inserted in the pages for the discussion board (rather than trying to hack the HTML and PHP (which is not one of the languages I write in right now). I know when I installed the events module that it inserted an events button in the main menus across the site.

    Thanks much I am very close to having the basic site in place.

    #78055
    gerikg
    Member

    BBpress Latest Discussions works.

    #78282
    gerikg
    Member

    It should work…

    make sure wp-config has:

    define( ‘COOKIEHASH’, ‘blahblahblahblahblahblahblahblahblahblah’ );

    define( ‘COOKIE_DOMAIN’, ‘.websiteblah.com’ );

    define( ‘SITECOOKIEPATH’, ‘/’ );

    define( ‘COOKIEPATH’, ‘/’ );

    and bb-config has:

    define( ‘COOKIE_DOMAIN’, ‘.websiteblah.com’ );

    define( ‘SITECOOKIEPATH’, ‘/’ );

    define( ‘COOKIEPATH’, ‘/’ );

    you can get the correct configuration using “bbPress Integration” wordpress plugin

    #77797

    I would welcome any form of integration, since I am very new to this and have a buddypress site that groups can now post discussions (forum entries) but my main menus are not integrated and there is no widget to show recent activity on the bbPress site from within buddypress.

    #77822
    Sven Lehnert
    Participant

    I have the same problem.

    I use wpmu 2.8.4a buddypress 1.0.3 and bbpress 1.0.2

    I have deep integration and the forum is working very well. Also I have the buddybar integrated. I just doesn’t have a regular admin interface…

    In the moment I go to all sites by calling the page directly. For example to activate plugins I go to yourdomain.com/forum/bb-admin/plugins.php

    Here the link to the forum http://rheinrauschen.de/forum its looking normal

    Any idea how to get it fixed?

    #78054

    Also I have tries bbPress-live (which has not been updated for a while it seems) and that will not work. It does not appear there is any integration out there at all!

    Please prove me wrong!

    code012
    Member

    nevermind. I’ve fixed it.

    Can't simultaneously be logged in on both WP and forum

    Hope this would help you as well.

    #78364
    code012
    Member

    I fixed it.

    It wasn’t simple, and honestly, I really hope that the integration with WP was a basic feature, not an option. Otherwise, it’s the best forum for WP-enabled website so far, and I’m so glad that I installed it.

    The following steps are what I did, and might have unnecessary steps, but whatever made it work, made it work. I’ll also assume that you have followed the integration steps that involves matching keys of config files. I would also assume that you have used the correct keymakers for the bbPress version.

    bbPress 0.9: https://api.wordpress.org/secret-key/1.0/

    bbPress 1.0: https://api.wordpress.org/secret-key/1.1/

    1. Install the “bbPress Integration” plugin for WP. Set up everything accordingly until you see the “Manual Cookie Settings”. It told me to add “define( ‘COOKIEPATH’, ‘/’ );” on wp-config.php, but it didn’t work. I had to remove / for the path because I read it somewhere that if you add /, it’ll add an extra /, making it // for the cookie path with is invalid. So I added “define( ‘COOKIEPATH’, ” );” instead, above the “AUTH_KEY” section in wp-config.php.

    2. I’ve added the following lines above the ?> part in the end of the bb-config.php :

    $bb->bb_xmlrpc_allow_user_switching = true;

    $bb->cookiepath = ”;

    $bb->sitecookiepath = ”;

    This tip can be found in other tutorials, but notice that again, I took out / for the path.

    3. In WP Settings -> Writing, I’ve enabled XML-RPC.

    4. In bbPress Settings -> Writing, I’ve enable XML-RPC.

    5. I’ve cleared the cookies of the browsers (IE and FF).

    Everything should work as it is. At least it did for me.

    Now I can simultaneously be logged in for WP and bbPress without any problems.

    I really hope that one day, either from bbPress settings or a one simple plugin would resolve the problems that some of us had.

    code012
    Member

    Hi stereostokey.

    I’m having the same problem.

    Did you manage to fix the problem? If you did, could you let me know how you fixed it?

    Thanks.

    #31567
    phaniraj01
    Member

    Dear Team,

    I installed bbpress forum theme in local host >> it’s working fine.

    same is installed in forum in the dreamhost >> no css is appearing.

    thanks,

    phani

    #31494

    I have done all the Buddypress integration and login is great and my buddypress groups can post, etc. But I have found no integration (widgets or whatever) to show bbPress on WordPress sidebars and most importantly I have no idea how to get a link button integrated into WordPress MU (my other addins put one there on the top menu for me.

    If I can avoid another night hacking the templates it wold be great since the integration already took 2 days!

    Thanks

    #74870
    plrk
    Member

    Dukessa: unfortunately, _e() (and __()) attempts to translate the string it is given – which means that if you try to call “_e(topic_time())”, it will be interpreted as “_e(“August 12, 2009″)” (or whatever topic_time() outputs). The solution is to put translation functions inside the topic_time() function. Note however, that that would indeed translate “August” into “Augusti”, but it won’t fix the order (it’ll still go “month day, year”) nor the capitalization (in Swedish, months are spelled with lowercase first letter unless in the beginning of a sentence). In WordPress, the order problem is solved by an admin setting for the date format, but the capitalization issue remains.

    I hope that explains it. If I have the time some day, I’ll try to submit a patch for it to be fixed in the next version.

    code012
    Member

    Hi.

    First of all, thank you for the great forum.

    I’ve used the other forums but I think bbPress is the best way to integrate with WP.

    The integration worked fine. I can use my WP account to login and post on the forum.

    But I can’t login on both WP and forum simultaneously.

    If I logged into the WP, then visit the forum, WP automatically signs me out. Same thing happens vice versa.

    Is there a way to be logged in on both WP and forum simultaneously?

    Thank you for your help.

    NOTE: I’ve just noticed that I can switch fine between WP admin page and the forum. But somehow I cannot post on WP for comments unless if I log in, but then forum automatically signs me out as soon as I log in with WP comment area.

    #31564
    Wojnar
    Member

    Is it possible to convert bbPress users database to WordPress?

    #78313

    In reply to: Invalid email address

    johnhiler
    Member

    Sounds like a classic integration issue.

    Start a new thread with the details… make sure to include the version numbers of both bbPress and WordPress, along with whatever techniques you’ve used to integrate the two!

    #78246
    suzkaw
    Member
    #31562

    I am integrating bbPress 1.0 with my WP 2.8 site. I want to use the same header and navigation in bbPress as I have on the blog, so if I add more pages the bbPress navigation will be automatically updated.

    I included wp-blog-header.php in the bbPress setup and customized the bbPress header.php in the theme folder, and it all looks and works great – except that none of the WP plugins are being called into the header. For instance I have a WP plugin that hides some pages in the menu, but in the bbPress header the pages are showing again.

    Is there something else I need to do when using wp-blog-header.php to make it use the plugin functionality?

    #31563
    heywhereyou
    Member

    Hello,

    I’m pretty new in this BBpress forum thing… I have recently integrated it in my wordpress site. Anyway my problem is that when I put description in my Forum’s title it doesn’t wrap meaning my table expands until the whole paragraph is done which I don’t like.

    Here is my forum site so you have an idea what I mean — http://heywhereyou.com/forum

    How do I fix this???

    Much thanks!

    #31561
    hpguru
    Member

    I released bbPress 1.0 in Finnish.

    Download .po: http://hpguru.net/wp-content/uploads/2009/08/fi.po

    Download .mo: http://hpguru.net/wp-content/uploads/2009/08/fi.mo

    Enjoy.

Viewing 25 results - 49,176 through 49,200 (of 64,471 total)
Skip to toolbar