Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 19,601 through 19,625 (of 26,846 total)
  • Author
    Search Results
  • #81881

    In reply to: Problems with bbpress

    chrishajer
    Participant

    Are you integrated with WordPress?

    What version bbPress did you install, and WordPress too if you did integrate?

    Any plugins? What theme are you using?

    Language other than English?

    When in doubt, post a link to your forum.

    #81986

    In reply to: Help with integration

    @HSeatSleeper – Setting the cookies right can be troublesome, also because there is so much conflicting information. When I set the forum up, I tried so many different things, and a lot of trial and error.

    One thing that worked for some, was also to completely regenerate the key values from the api.wordpress link, and put the new ones in both config files. Then flush cookies and cache from the browser, or even better, use a different browser that did not store the old cookies. I do recall trying with several browsers, until in the end it worked.

    Try this way, starting from scratch and without using the speedups.

    #72580
    Macmenddotcom
    Participant

    Where has this gone to

    #81985

    In reply to: Help with integration

    Hard Seat Sleeper
    Participant

    Thanks Buddha,

    I tried all of these, to no avail. I also tried that other page, worked my way through it, but that thread just kind of fizzed out with no resolution either. I’ve tried to read that 101 page before. it’s too long with too much conflicting info.

    One of them led me to this page, to generate a SALT:

    https://api.wordpress.org/secret-key/1.1/salt

    I tried that, put it in both config files, and it didn’t work.

    The only headway I made was that in adding your “speedup” rules, I was unable to log out of bbpress. At least it was something.

    The cookie hash I generated here:

    http://www.adamek.biz/md5-generator.php

    Some said to include the www. in these url values (cookiehash, COOKIE_DOMAIN, etc), some said not, I tried both and still couldn’t get it to work.

    I appreciate your help Buddha, it might be that I need to learn more about cookies; as it is, I’m just stabbing in the dark here, I’m not totally familiar with how all these things work.

    #66176
    lokrin2000
    Member

    Well, I took the header, footer, index, style sheet and image folder from the WP theme and transfered them over to the bbP theme folder. I then renamed index.php to forum.php and combined both css files into one which is currently pretty bloated. After clearing out my browser cache the bbP page is pretty good looking, just like the WP page.

    There are a few things that need tweaking, such as a blank line near the footer on the main page and the tag list on the message pages.

    http://wp.angelwoodpines.org

    http://bbp.angelwoodpines.org

    Still have to add a physical link between the two. (Although the header image will still take you to the main blog site.)

    #81984

    In reply to: Help with integration

    I remember struggling a bit to make it work, and I have tried several different recommendations I found in these forums. Now there is this guide that may be very helpful

    https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101

    Let me tell you what I have defined in my config files, to make it work seamlessly:

    1 – wp-config

    SECRET_KEY your value

    AUTH_KEY your value

    SECURE_AUTH_KEY your value

    LOGGED_IN_KEY your value

    NONCE_KEY your value

    then, at the end of the wp-config file

    define('COOKIEHASH', 'your value');
    define('COOKIE_DOMAIN', '.www.yourdomain.com');
    define('SITECOOKIEPATH', '/wp-admin');
    define('COOKIEPATH', '/');

    – on the cookie_domain there must be a . (period) before the url

    – sitecookiepath is for root installations, if you have WP in a subdirectory, then change the path to, for example /blog/wp-admin

    – cookiepath is OK with just ‘/’ (also if WP is in a subdirectory, at least this was my case, even if the integration plugin told me otherwise, which did not work for me)

    2 – bb-config

    BB_AUTH_KEY to match the WP key

    BB_SECURE_AUTH_KEY to match the WP key

    BB_LOGGED_IN_KEY to match the WP key

    BB_NONCE_KEY to match the WP key

    then, at the end of the bb-config file I have

    // Start integration speedups

    // WordPress database integration speedup
    $bb->wp_table_prefix = 'yourprefix_';

    // WordPress cookie integration speedup
    $bb->wp_siteurl = 'url to match what you have in WP general settings';
    $bb->wp_home = 'url to match what you have in WP general settings';
    $bb->cookiepath = '/';
    $bb->authcookie = 'wordpress_here goes the same sequence of numbers to match the cookiehash in wp-config';
    $bb->secure_auth_cookie = 'wordpress_sec_here goes the same sequence of numbers to match the cookiehash in wp-config';
    $bb->logged_in_cookie = 'wordpress_logged_in_here goes the same sequence of numbers to match the cookiehash in wp-config';
    $bb->admin_cookie_path = '/forums-directory/bb-admin';
    $bb->core_plugins_cookie_path = '/forums-directory/bb-plugins';
    $bb->user_plugins_cookie_path = '/forums-directory/my-plugins';
    $bb->sitecookiepath = '';
    $bb->wp_admin_cookie_path = '/wp-admin';
    $bb->wp_plugins_cookie_path = '/wp-content/plugins';

    // End integration speedups

    – the last two if WP is installed at the root, otherwise

    ‘/blog-directory/wp-admin’

    ‘/blog-directory/wp-content/plugins’;

    to get sets of keys

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

    https://api.wordpress.org/secret-key/1.1/salt

    I can’t remember how I got that cookiehash value…

    a possible helpful thread, just in case

    https://bbpress.org/forums/topic/where-do-i-define-user_cookie-pass_cookie-auth_cookie-secure_auth_cookie-log

    Currently on WP 2.8.6 and bbPress 1.0.2

    I hope this helps.

    #81999
    Marius-
    Member

    Glad you’re in on it folks.

    I believe that if BBPRess was included in the WordPress install, as a default plugin or something, it would force higher interest.

    #32437

    Topic: atahualpa problems

    in forum Themes
    shansta
    Participant

    Hello,

    I have successfully integrated bbpress 1 and lastest wordpress but having trouble with the header and footer in the forum..

    This is what I have done so far…

    Copied and renamed kakumei to my-templates/newtheme/

    Added <?php get_header(); ?> & <?php get_footer(); ?> to all the required php files.

    I then added

    define(‘WP_BB’, true);

    if ( !defined(‘DB_NAME’) ) {

    require_once( dirname(__FILE__) . ‘/../wp-config.php’);

    }

    define(‘WP_BB’, true);

    if ( !defined(‘DB_NAME’) ) {

    require_once( dirname(__FILE__) . ‘/../wp-blog-header.php’);

    }

    to the bb-config.php

    & then added

    <link rel=”stylesheet” href=”/discussions/my-templates/newtheme/style.css” type=”text/css” media=”screen” />

    <link rel=”stylesheet” href=”/discussions/my-templates/newtheme/style-rtl.css” type=”text/css” media=”screen” />

    to the WP theme header.php

    The forum shows up in the with what looks like the header and footer of my WP theme…

    I have a problem with all the css not working… Does adding the url for the css in the WP theme header work or do i need to do this another way?

    Thanks

    #82121
    hatter
    Member
    #81993

    In reply to: Where are the themes

    I guess it depends on the complexity of the WP theme, but when I matched the looks of the forums, with some trial and error, it wasn’t too complicated. In short, it was a matter of matching header, footer, and use the “hottags” section as the sidebar. If I can backtrack my steps, I will post about it, in case it may help other people, while we are waiting for the official docs.

    This WordPress plugin by Sam Bauers also looked very interesting, but I think it’s not working with the latest version of WP, after 2.6.2. It would be nice if the plugin could be updated.

    https://wordpress.org/extend/plugins/bbpress-live/

    #82002

    In reply to: New Theme For BBPress

    @arpowers – from your site:

    iBlogPro now is one of the only WordPress themes with its very own matching BBPress forum Template.

    This is a wonderful idea that any theme developer should keep in mind! Kudos for that.

    Themes that already come with the matching forum templates for bbPress, will help in keeping the momentum going for this great platform. Such implementation will make bbPress the logical choice, rather than having people looking around for forum platforms, and getting confused.

    As for the looks of the theme, what can I say…. I am a mac addict… Very cool!!! :-)

    #81965

    In reply to: bbShowcase shut down?

    arpowers is right.

    and if you look on the automattic projects page, bbPress is right there, mentioned just after WordPress and Akismet, not even last in line.

    @Marius – yes, WP is using bbPress.

    #81996
    citizenkeith
    Participant

    Thanks for starting that thread, Marius-

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

    #32428
    Hard Seat Sleeper
    Participant

    I’m hoping someone can help me with integration of my wp 2.8 and bbpress 1.1. So far I have:

    1) Set everything correctly in bbpress admin for integration

    2) Created a “secret key” in wp-config, and copied it to the bbpress config file

    3) Installed the bbPress Integration plugin in wordpress

    4) Defined the cookie path in wp and bbpress

    5) set the AUTH_KEY in wp, and copied that to bbpress

    6) cleared cookies and cache numerous times

    and still, logging into one does not log me in to another. I see some mention of a SALT key in these forums, is that what I need?

    Any help would be appreciated.

    #81963

    In reply to: bbShowcase shut down?

    Marius-
    Member

    I just checked out Simplepress and it looks horrible.

    That look is thee exact reason I chose BBpress instead. There was nothing simple about SimplePress.

    Doesn’t WordPress.org use BBPress? Though I can’t find it credited anywhere… if they do – thats a good sign?

    #81964

    In reply to: bbShowcase shut down?

    Marius-
    Member

    I just checked out Simplepress and it looks horrible.

    That look is thee exact reason I chose BBpress instead. There was nothing simple about SimplePress.

    Doesn’t WordPress.org use BBPress? Though I can’t find it credited anywhere… if they do – thats a good sign?

    #81995
    Marius-
    Member

    I just made a post about it on WordPress.org, and when I launched the forum, I bragged about the BBPress software on the mainsite of mine. I want BBPress to live – please!!!

    #62922
    skybrother
    Member

    This is an old post, but I found a GREAT fix for this issue detailed in this article >> http://www.adrogen.com/blog/wordpress-wp-blog-headerphp-causes-404-in-ie/

    The code I finally replaced the “wp-blog-header.php” is here.

    /***********************************************************************

    * Blog Header Error Fix *

    ***********************************************************************/

    // Include WordPress functionality

    $currDir = dirname(getcwd());

    // Make sure this isn’t install or admin (go up if it is)

    if(!file_exists(“$currDir/wp-config.php”))

    $currDir = dirname($currDir);

    if(!file_exists(“$currDir/wp-config.php”))

    die(“Cannot find WordPress integration files.”);

    // ***** OLD Blog Header Line *****

    //require_once(“$currDir/wp-blog-header.php”);

    // ***** New WP Integration stuff *****

    require(“$currDir/wp-config.php”);

    $wp->init();

    $wp->parse_request();

    $wp->query_posts();

    $wp->register_globals();

    /***********************************************************************/

    Made my life ALOT better….

    #32431
    arpowers
    Member

    Just put out a new theme based on WordPress for one of our ‘pro’ WP themes.

    Would love the feedback of the BBP community.

    Demo:

    http://www.pagelines.com/demos/iblogpro/forum/

    Info Page:

    http://www.pagelines.com/themes/iblogpro-forum/

    #81065

    In reply to: Help out with bbPress

    Ben Huson
    Member

    Definitely don’t want to see BBPress fall by the wayside so if I can do anything to help, I will.

    I have done a couple of BBPress implementations alongside wordpress, mainly theming and small tweaks, but it’s fair to say at the moment my main knowledge is based around WordPress theme and plugin development.

    Happy to contribute in any way, wether it’s minor core patches, front end design/coding, or just adding documentation to a codex etc.

    #32306
    batarista
    Member

    Dear All,

    I’m making a first-time installation of bbPress-1.0.2.zip on localhost, following the instructions at http://bbpress.org/documentation/installation/

    I unzipped to wwwrootbbpress, browsed to the installation script “Welcome to the bbPress installer”, created the MySQL database, and for simplicity, skipped WordPress integration.

    However, at the final step “Site settings”, when I press the “Save site settings” & “Complete the installation” buttons, I receive the following error…

    Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 98304 bytes) in F:wwwrootbbpressbb-includesbackpressclass.bp-sql-schema-parser.php on line 170

    Does anyone know how to resolve this problem?

    My server is WAMP5 on WinXP; it already serves up a WordPress blog (I’m in “learn about blogs & fora mode”).

    Many thanks in advance :>)

    #81957

    In reply to: bbShowcase shut down?

    This is all so confusing. I will use bbPress as long as possible (keeping in mind the security issues) and really hope that it will continue to grow. It’s such an elegant platform and a perfect match for WordPress.

    I find it odd that it would die like this… and WP is still using it, though I’m sure we’ll all miss _ck_’s great knowledge and contribution. Oh my… :-(

    #81749

    I just saw that on bbshowcase.org too… oh no!!!!!

    Also, I thought that Sam left, not that there was a “removal”….

    This is all so odd and sad.

    bbPress is a great platform and the true logical companion to WordPress as of now.

    Let’s keep it alive and thriving.

    #81982
    shansta
    Participant

    ok.. will try thanks.

    I can’t seem to edit/delete posts in WP anymore… Does anyone know if having admin username set to administrator/keymaster affects this or not?

    #81981
    Ben L.
    Member

    For me, it’s bb-login.php?action=logout. I think your theme might have the link hardcoded. If so, change the link to <?php bb_logout_link(); ?>.

Viewing 25 results - 19,601 through 19,625 (of 26,846 total)
Skip to toolbar