Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 57,126 through 57,150 (of 64,063 total)
  • Author
    Search Results
  • #3259
    gginard
    Member

    I translate bbPress to Spanish. If yours want it, yours can download in:

    http://www.degabriel.es/2008/04/24/traduccion-de-bbpress-09-al-castellano/

    #60337
    drakula
    Member

    Where can I download futurekind?

    #64613

    In reply to: bbpress loop

    _ck_
    Participant

    What you are asking for is very easy.

    $forums = get_forums(); gets you all the forums,

    $topics = get_latest_topics( $forum_id); will get you the topics list for any forum id. So if you looped through the forums like on the front page, just fetch the $topics after each forum in the loop.

    The formatting and page layout is the “hard” part.

    #64608

    In reply to: No SECRET_KEY in WPMU

    Trent Adams
    Member

    I would go back to the 0.8.3.1 release myself until Donncha releases the upgrade to WPMU. You can find the older release of bbpress at:

    https://trac.bbpress.org/browser/branches/0.8

    That or you have to work on the plugin to get the old md5 hashes working again. It might be easier on your users to just get the older version running again though :)

    Trent

    #64579
    _ck_
    Participant
    #64578
    howtogeek
    Member

    You’ll need to use the PHP functions to check the cookies… bbpress doesn’t use sessions by default.

    Also, you wouldn’t want to simply use the userid, because that would be insecure since anybody could hack a cookie with any username.

    bbPress and WP both store two cookies, the username and the encrypted hash of the password. You’ll have to use those in combination to do a lookup to the database to make sure they both match. I’d advise taking a look through the bbpress source code… it’s not terribly difficult to understand.

    The other thing you could do… you could create a plugin / hack for bbPress to assign a session parameter after a successful login, which you could then check for in your other code.

    #3280
    Burkie
    Participant

    While customizing bbpress I was wondering if anyone had a way to display forums/subforums and topics together, list a forum then have the topics for each displayed below it?

    #64576
    howtogeek
    Member

    I assume this is a non-WP page as well?

    You can check the bbpress session cookie and then use that to check the user against the database. You’d have to use the same logic that WP or BB uses (the latest bbpress changes this logic). You’ll also need to make sure that the cookie domain is set correctly.

    I’ve actually had to do this recently myself… it’s pretty simple and works well.

    howtogeek
    Member

    I wrote my own replacement plugin for the mail function that uses the Swift Mailer PHP class to call sendmail directly, which should provide better performance over the built-in php mail functions.

    It also gives the the chance to assign a display name to the email address so it comes through as “bbPress Support Forum” instead of just “forum@bbpress.org”.

    if ( !function_exists('bb_mail') ) {
    function bb_mail($to, $subject, $content, $headers=''){

    require_once('PATH_TO/Swift/lib/Swift.php');
    require_once('PATH_TO/Swift/lib/Swift/Connection/Sendmail.php');

    $swift =& new Swift(new Swift_Connection_Sendmail("/usr/sbin/sendmail -bs"));
    $from = new Swift_Address("noreply@mysite.com","My bbPress Forums");

    $message =& new Swift_Message($subject, $content);
    if ($swift->send($message, $to, $from)) {return true;}
    else{ echo "Message failed to send to ".$to." from ".$from;}
    $swift->disconnect();
    }
    }

    To use this, you’d have to download Swift from their site and put it where it’s included in the above code.

    http://www.swiftmailer.org/

    You could also modify it to connect to an external SMTP server (even the Gmail server, for instance) by changing the Swift_Connection part above using this guide:

    http://www.swiftmailer.org/wikidocs/v3/connections/smtp

    #64607
    howtogeek
    Member

    If you check the Extend section linked on the top, you’ll see a bunch of plugins for these types of things.

    For that particular task: https://bbpress.org/plugins/topic/bb-topic-views/

    #3279
    adaptiman
    Member

    I’m using WPMU 1.3.1 and the latest version of bbPress. There is no SECRET_KEY in the config file for WPMU and I don’t think WPMU 1.3.1 uses the latest WP cookie encryption of WP2.5. I’ve tried mouldy cookies plugin and I can’t get it to work. I’ve got the usernames integrated with the blog, but I can’t pass login credentials (cookies) between WPMU and bbPress.

    Any suggestions?

    #49960

    In reply to: En español

    gginard
    Member

    Sigo trabajando en la traducción y ya he llegado al 91%. Podéis descargaros el fichero en:http://www.degabriel.es/2008/04/24/traduccion-de-bbpress-09-al-castellano/

    Un saludo

    Gabriel

    #64564
    melvitax
    Member

    ok, i downloaded the latest trunk and i was able to get it working although it threw this error out:

    Warning: in_array() [function.in-array]: Wrong datatype for second argument in /home/cristian/public_html/foros/bb-admin/upgrade-functions.php on line 537

    any thoughts?

    #64563
    melvitax
    Member

    is there a way to see where the databse update script is getting stuck in?

    #64601

    What version of bbPress are you installing?

    If you go to your bbPress site, does it work (even though the installer said it failed)?

    I think there may be a bug in the bbPress installer such that if you want to integrate the user database, you must also check the cookie integration checkbox.

    #3276

    bbPress 0.9.0.2 has been released.

    Several bugs have been fixed, including an important security bug.

    Everyone should upgrade.

    #64572
    Sam Bauers
    Participant

    You would have to write a replacement for bb-includes/db.php to get bbPress to work with MSSQL.

    #64517
    Sam Bauers
    Participant

    > but it still seems to be breaking on some minor things (like adding a topic to your favorites while logged in)

    Actually, that’s bbPress that’s broken, not your rules. Fixed in the next release :)

    #64530
    djp
    Member

    Woohoo!!! Got the PEAR-shaped workaround working.

    A guy called Rob Hartzenberg at my hosting provider wrote the plugin for bbpress that uses the PEAR mail package to allow authentication.

    All I needed to do was:

    1. download & edit the plugin file to reflect my own SMTP host, port number, username (email address) & my password;

    2. replace the last line of the bb_mail() function in “bb-includes/pluggable.php with 2 lines of code supplied in the installation instructions;

    3. Login as keymaster & activate the plugin.

    Voila!

    I will be uploading the plugin shortly as I reckon there will be people in need of this workaround as quite a lot of hosting providers require SMTP authentication.

    What a relief :)

    many thanks to everyone that tried to assist & an even bigger THANK YOU to Rob at Imaginet.

    #3275
    irr1449
    Member

    I’m using WP/BBP as a site wide CMS. It’s been really great so far thanks to the light-weightness of bbPress. I’ve really just had to hack the tables and change a little code to get the extra info in there that I want.

    The only issues I’m wondering about is how to get the user data on a non bbPress page… I need to see if the user is logged in, and then get their userId…

    Just to give you an example, I allow the user to save certain things, and I use the user id from the wp/bbpress users table. Can anyone suggest a light weight way to do this?

    #3274

    Topic: Plugin localization?

    in forum Plugins
    joerghh
    Member

    Hi there!

    Why don’t use plugin authors gettext localization as bbPress itself does?!

    I start testing plugins for the german community at bbpress.de and find out that absolutely NO plugin could be used without direct translation. That’s a pitty and I really wonder about this situation :-(

    Regards

    Jörg

    #3273
    anjap
    Member

    Has anyone tried to install bbpress on ms sql server ?

    I know mysql is required, but we already have a ms sql 2003 server up and runnig and would like to use bbpress on our intranet.

    Of cource we don’t want to mess up the existing stuff, but on other hand we would like to avoid having both mssql and mysql runnig.

    So any experience, good advices or hints would be appreciated…

    _ck_
    Participant

    bbPress 0.9 renamed the critical system email address that several plugins rely on (“admin_email” became “from_email”)

    Unfortunately many plugin authors aren’t aware of this and the old setting is completely deleted from the database, which makes any older plugin that looks for “admin_email” fail and get a blank address and don’t anticipate/test for a blank. So they blindly insert the blank address into emails which causes the emailer to either fail or bounce the message.

    A few of my plugins were affected, I just found another tonight, and there are several third-party ones still unpatched.

    You can work around this problem by putting this into your bb-config.php (anywhere on a new line)

    $bb->admin_email = 'email@your-forum.com';

    where email@your-forum.com is the same email address you use inside bbPress on bb-admin/options-general.php

    This won’t hurt anything, causes no extra load of any kind and simply allows older plugins to work without additional edits until the authors get a chance to upgrade them.

    (Just remember you “hard coded” this address if you ever change the main one for any reason. You can delete it after 1.0 is out and all plugins have upgraded. In fact the old email address will become unused after all the plugin upgrade anyway so this can’t hurt anything in practice.)

    #64325
    chrishajer
    Participant

    MarcoZ: that is perfectly fine as you are describing it. WordPress in the root of the domain, bbPress in a folder. You do create a directory called forum and copy the files there.

    If you are not including WordPress in your bbPress, then you won’t need this plugin to correct the WordPress 404 errors:

    https://bbpress.org/forums/topic/bbpress-wordpress-mu-or-not-leads-to-404-errors-but-pages-still-load#post-13156

    Try your installation without that plugin first.

    #49649

    In reply to: Emoticons For bbPress?

    citizenkeith
    Participant

    Thanks for the tip. Didn’t work for me. :(

Viewing 25 results - 57,126 through 57,150 (of 64,063 total)
Skip to toolbar