Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 49,501 through 49,525 (of 64,452 total)
  • Author
    Search Results
  • #76758

    I forgot to deactivate all plugins prior to upgrading to latest version (from 1.0.1), but everything seems to work fine… is deactivation a vital step?

    #77889
    joshmac
    Member

    Never display your cookie hash. That is a security risk.

    #21754

    Topic: dotNetBB import

    in forum Installation
    Andrew
    Member

    Wondering if anyone has done a conversion of dotnetbb to bbpress?

    Is there a good resource anywhere for bbpress import tools? I couldn’t find one.

    Gautam
    Member

    I just made the Plugin Browser for bbPress By Sam Bauers compatible with bbPress 1.0 & later :-)

    It now correctly recognizes the current version of the plugin stored on your forums, also tells you to upgrade if necessary, and can uninstall plugins already installed or install which are not installed.

    I have also done the following changes:

    • The directory folder of a plugin need not have pb– in its name, nor have a pb–revision.php
    • GET methods changed to POST.

    Notes:

    • Plugins installed by the previous version of this plugin, cannot be upgraded or uninstalled. You can, however remove pb– from their name via ftp and then upgrade or uninstall.
    • It does not recognize the plugins bundled with bbPress like Akismet, Bozo, etc. (This functionality wasn’t there before too).

    You can download it from here: http://gaut.am/uploads/plugin-browser-for-bbpress.zip

    If you liked it, then you can donate here – http://gaut.am/donate/

    Thanks :)

    #77888
    Jim R
    Participant

    They appear to be all the same. I did set up my bbPress database table prefix as wp_bb_. They are in the same database.

    One thing I wonder about is this:

    define( 'COOKIEHASH', 'd61ff63d6d2f09a423c2332af089b5c8' );
    define( 'COOKIE_DOMAIN', '.hoosierhoopsreport.com' );
    define( 'SITECOOKIEPATH', '/wpm/' );
    define( 'ADMIN_COOKIE_PATH', '/wpm' );
    define( 'COOKIEPATH', '/wpm/' );

    The cookie_domain, it says (dot)hoosierhoopsreport.com. Should the (dot) be there?

    #77915

    In reply to: WP or BB login?

    johnhiler
    Member

    I ended up having to support both, because I wanted users who sign in on a bbPress page to “stay” on the same page… and users who signed into a WordPress-powered page to also “stay” on the same page.

    I used to only use the bbPress signin, which worked great… but then users who signed into WordPress pages got sent “back” to the frontpage of my blog, which annoyed my users.

    Hope that helps!

    #77893

    In reply to: space between posts

    Sorry yes I do its: http://www.ghostdroppings.com/bbpress/

    Right now the background is black, so I would have to change that in order for you to see the spacing between the posts. However there is too much padding and I would just like there it be a bit more spacing between the posts like on bbshowcase.org, although I would add a tiny bit more space.

    #77873
    chrishajer
    Participant

    What version did you install? Search is built in to all versions, but only visible by default in the 1.0 version.

    Or, are you trying to search bbPress from WordPress?

    #76703
    chrishajer
    Participant

    Post your email address and we will close this topic.

    Or, look here:

    http://bbshowcase.org/forums/topic/bbpress-professionals-advertise-in-this-topic

    #77887

    Go over your wp-config and bb-config installs and make DAMN sure they’re talking to each other. Check the DB name and password. Go into your SQL db and make sure that bb_ and wp_ are in the same database. When you login, look at the cookies in your browser and see if anything jumps out about their similarities or differences. Triple check your KEYs and HASHes, and I’d even go so far as to reset them. Can’t hurt, can it?

    #77851
    Marius-
    Member

    The newest version of BBPress, just downloaded it.

    I have no idea about what PHP, SQL and Windows it is. Im gonna have to ask my host. But does it really matter? I can tell you its not outdated for sure. They constantly provide the newest tools and techs.

    No blank lines. And like you see in the errorlog, its line 273 and 232 that are problematic. Supposedly.

    #31462
    Olaf Lederer
    Participant

    Hi,

    I don’t like the standard message send after a new user has registered to my bbpress forum. So I thought about to write an plugin that will send my custom text instead.

    This is what I have:

    function bb_send_pass_cust($user, $pass) {
    $message = __("Your username is: %1$s nYour password is: %2$s nYou can now log in: %3$s nMyCustom text!");

    return bb_mail(
    bb_get_user_email( $user->ID ),
    bb_get_option('name') . ': ' . __('Password'),
    sprintf($message, $user->user_login, $pass, bb_get_uri(null, null, BB_URI_CONTEXT_TEXT))
    );

    }

    remove_action('bb_new_user', 'bb_send_pass');
    add_action('bb_new_user', 'bb_send_pass_cust');

    this code has many issues:

    – it doesn’t remove the action

    – the password is nu available in the custom function

    In the past my functions/plugins never had function arguments, how to use them?

    Thanks for your help!

    #77886
    Jim R
    Participant

    OK…got past this part. : )

    It’s back to the way it was before I started over. If I log into one, it still doesn’t log the other one in. The same applies when logging out. Log out of one, the other is still logged in.

    Thoughts?

    #20334
    recronin
    Member

    *note – I’m not trying to integrate bbPress into a WordPress page but rather a static page. I already have the login integration between bb and wp working.

    I’ve been able to “embed” my WordPress posts into a static web page with the help of an online tutorial using PHP includes. Basically, on the page that you want to have WordPress embedded in, you paste:

    <?php require(‘../../../blog/wp-blog-header.php’); ?>

    into the very top of the page above the DTD, and then paste The Loop wherever you want your posts to appear.

    What I’d like to do is the exact same thing except with bbPress. I’ve tried applying the same basic principle as described as above, but am pretty much stuck and can’t get anything except errors to appear.

    Here’s what my code looks like at this point. I’ve used the header file from the kakumei templates folder as that’s the only header file I can find. At the very top above the DTD;

    <?php require(‘../../../forums/bb-templates/kakumei/header.php’); ?>

    Now I’ve searched high and low for anything talking about “The Loop” (or it’s equivalent) in bbPress but have found zip. The closest things I have seen have been inside the bbPress/index.php and forum.php files, which I pasted and tested each separately into the area that I wanted to have the forums appear, but with no positive results.

    If anyone knows how to do this properly I will be grateful.

    Thank you

    Adam Lawton

    *The page where I found the WordPress integration tutorial is:

    http://moshublog.com/2005/07/05/integrate/

    #77885
    Jim R
    Participant

    I’m zero luck getting through this part. I went through the WordPress integration section, completed the steps, and it logged me out. Now it doesn’t recognize my admin account or any account for that matter.

    I can’t imagine how screwed up this is.

    #77884
    Jim R
    Participant

    BTW…using WP 2.8.1 and bbPress 1.0.2.

    #77883
    Jim R
    Participant

    I did try that the second time around. Now I’m on a third time and getting this error:

    There was a problem connecting to the WordPress user database you specified. Please check the settings, then try again.

    Before I tried the third install, I deleted all old files both from my local and my server locations. I wiped out my bbPress database tables. So it’s a clean install. I’m getting my cookie information from my wp-config file downloaded from my server. I have checked the settings, BTW.

    Ugggghhh!! : )

    #77912
    driz
    Member

    Okay I’ve deleted everything in the cache/cookie and also all those salts in phpMyAdmin and NOW I can access both admin panels again.

    BUT I can’t get the integration working at all. As soon as I try to use the same salt on both it breaks them, making my admin account on bbPress just a plain member and preventing me from accessing the wp-admin panel altogether (NOTE: I dont mean unauthorized, I mean actually unable to login, it just refreshes).

    #77882

    bbPress should integrate nicely into whatever template the blogger is using. It should be that simple. Am I missing something???

    bbPress integration is user integration, not full fledged theme integration. Even if you use Deep Integration methods, there will be a need for manual jiggery.

    As for the login issues, double check your cookies and hashes between your wp-config and bb-config files. Clean out all of YOUR cookies and your browser cache and check again. SOmetimes, it’s just that simple.

    #77911

    Cookies and caches.

    Flush ’em all. Manually delete if you have to.

    #77577
    Olaf Lederer
    Participant

    If you’re able to tweak a regular template to a wordpress theme than is the next step to bbpress not so far.

    I embedded both applications into my own site:

    http://www.finalwebsites.com/forums/

    http://www.finalwebsites.nl/blog/

    my advice start with the header and footer!

    surround anything with one div container, open that container in the header and close it inside the footer

    #77902

    In reply to: How to delete a post ?

    johnhiler
    Member

    I don’t think that’s been released yet hpguru?

    https://trac.bbpress.org/ticket/1149

    Lack of ability to delete old posts is a long-standing issue. If you don’t have access to phpmyadmin, someone wrote a script which does it… but I can’t vouch for it as I’ve never used it:

    https://bbpress.org/forums/topic/permanently-deleting-topocs-and-posts

    Before trying anything like this, make sure to backup all of your data!!!

    Jim R
    Participant

    I have followed the instruction for database/user integration, and it doesn’t work as it should. It recognizes the users’ information, but it doesn’t recognize if they logged in to the other. So I can log into my WordPress but still be logged out in bbPress. The reverse is true too.

    Simple Press managed to get it right, but the interface is a bit bloated. I’m using WordPress 2.8.2.

    bbPress should integrate nicely into whatever template the blogger is using. It should be that simple. Am I missing something???

    I like how clean bbPress is, but it can’t be that tough to integrate, as I assume it’s produced in part by the same group.

    #77901

    In reply to: How to delete a post ?

    hpguru
    Member

    You can delete posts from database in bbPress version 1.1. Read from trac.bbpress.org.

    #77900

    In reply to: How to delete a post ?

    batrachoid
    Member

    As far as I can tell, BBPress keeps “deleted” posts indefinitely, allowing the admin to restore them, if necessary. The only way I know of to permanently get rid of them is to manually remove them from the database.

Viewing 25 results - 49,501 through 49,525 (of 64,452 total)
Skip to toolbar