Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 58,451 through 58,475 (of 63,980 total)
  • Author
    Search Results
  • #60661

    In reply to: dutch translation

    Olaf Lederer
    Participant

    The dutch bbpress forum on wordpress is not very active :D

    Providing complete translations for a software in this stadium is very difficult…Prutser (cool nick name) you are on the way to become the most important contributor for the dutch translations :D

    #62217
    Olaf Lederer
    Participant

    I mentioned the DP (Digital Point) forum ;)

    #62216
    misterfunk74
    Member

    Uhm… Ok, someone is able to do it for me for 50 dollars?

    #62215
    Olaf Lederer
    Participant

    Hi Filippo,

    I don’t think that someone will convert a theme for free, check the DP forums, there are a lot of good WP theme coder (some of them could be able to do this job for ~50usd)

    #2751
    misterfunk74
    Member

    Hi, someone knows if (and how…) is it possible to integrate the wonderful Mandigo theme (http://www.onehertz.com/portfolio/wordpress/mandigo) in bbPress? For my site http://www.raccontidiviaggi.com (still working in progress…) I use Mandigo theme, I made the integration using the same database, but now I want to have the same theme also for the forum, which (as you can see here: http://raccontidiviaggi.com/forum-dei-viaggiatori) looks different. The problem is that it is a highly customizable theme, and apparently it’s not so easy as simply copy/paste the header… Someone can help me?

    Thank you

    Filippo

    #62213
    Olaf Lederer
    Participant

    Hi,

    I’m also new to bbpress but I’m using wordpress since a while.

    I think that akismet is a good prevention, if you have to much new user registrations made by bots you should protect with

    http://recaptcha.net/

    and moderate your forum, I wrote this plugin

    http://www.finalwebsites.com/bbpress/moderator-notification.php

    to get all new posts in my email

    #2750
    Simon99
    Member

    Just curious, both in terms of registration, and posting…

    I only have a small test forum up, that is integrated with my personal blog, but I was experimenting with a few ideas earlier. I go by the philosophy that layers of protection is always the way to go.

    So far I’ve implemented:

    1.) Visual check, pre reg form (eg. select the hamster image)

    2.) Blacklisting popular spam email domains (eg. mail.ru)

    3.) Hidden field trap (no javascript, just css)

    4.) Maths puzzle question

    5.) TanTan Spam Filter port

    6.) Askimet (obviously!)

    The first 4 are aimed at blocking spam bot registrations, and the final 2 at keeping posts clean. All the registration checks are core hacks (as I’m only experimenting).

    Any other techniques being used successfully to ward off spammers from bbpress? Maybe something like implementing ‘Bad Behavior’ filtering for the registration process for example?

    PS. Happy New Year to all!

    #59019

    In reply to: Punbb -> BBPress

    tommy2toes
    Member

    Thanks for the excellent script.

    #2747
    Olaf Lederer
    Participant

    Hi,

    according this post form I have to put code between “Backticks”.

    This will not work (at least on my website), if I use the backticks most from the post will disappear. To show code I use the “code” html element, this works fine until I edit the post after submission. bbpress will replace the code tags with backticks.

    Is this a bug or a php limit? (I remember me somthing with the backticks and php)

    #62193
    Olaf Lederer
    Participant

    hehe, Trent that was easy thanks :)

    In the meantime enjoy:

    Moderator New Post Notification

    #62172
    collatodo
    Member

    Nope. Am still trying to figure out how to make this one of the “my views”

    #61211
    fel64
    Member

    At 2 months, he’s long gone. Are you having the exact same problem? What’s the URL of the pages that display 404s, and what’s your pretty permalinks setting?

    (edit) right, you posted another topic. https://bbpress.org/forums/topic/profile-link-error?replies=2

    #62192
    Trent Adams
    Member

    What you need is here!

    https://bbpress.org/plugins/add/

    Trent

    #60870
    chrishajer
    Participant

    The next release will include the changes, but it might not be until WordPress 2.4 comes out, since there were a lot of changes to keep integration working. The bbPress version you install is highly dependent on the WordPress version, if you are looking to integrate the two.

    #2745
    Olaf Lederer
    Participant

    Hi,

    just wondering how to get my plugin listed on the bbpress website.

    what are the steps I have to follow?

    Thanks

    Olaf

    #62150
    Graeme
    Member

    Most bb themes right now are hand-rolled.

    I have created some “blank” themes which are a good starting point for hand-rolling your own theme. These are at my site bbpressraw.com.

    #2741
    Olaf Lederer
    Participant

    Hi,

    just finished the first version of my forum using bbpress:

    PHP Scripting Forums

    I use some plugins from this site and added also some function that only members can download files from my website (that was not a hard one)

    #58825
    ajg
    Member

    So how did you fix this problem?

    My bbPress and WordPress run on the same server.

    WP RSS feeds do not have that problem.

    All I get is:

    XML Parsing Error: xml declaration not at start of external entity
    Location: http://www.ajakirigolf.ee/foorum/rss.php
    Line Number 2, Column 1:
    <?xml version="1.0"?><!-- generator="bbPress" -->
    ^

    I can not parse the forums RSS feed to other pages. :(

    #62171
    Trent Adams
    Member

    I haven’t tried this collatodo, but does this allow users to sort forum or posts on the front-page? I am a little slow ;)

    Trent

    #55022
    colindb
    Member

    I don’t know how to write plug-ins, but I just installed bbPress and wanted to be able to approve new users. I messed around with the code just enough to get what I needed working, here are the changes I made:

    Starting with the function bb_send_pass function in bb-includes/registration-functions.php: I added an optional third parameters, so the function signature now looks like:

    function bb_send_pass( $user, $pass, $toAdmin = false ) {

    If the toAdmin flag is set I want this email to go to me, not the requesting user. So, just above the “$message = …” line, I added this:

    $recipient = bb_get_user_email( $user->ID );

    $rawRecipient = $recipient;

    if ($toAdmin)

    $recipient = 'myemail@example.com';

    I’m sure there is a better way to grab an administrator’s email, but like I said, I don’t know anything about bbPress… And what’s this about $rawRecipient? To make my life easier, I’m also including the email address in the email’s body (so I can forward it to the correct person without having to look up their info again). I did this by adding “Your email:” to the “$message = …” line:

    $message = __("Your username is: %1$s nYour password is: %2$s nYour email is: %4$s nYou can now log in: %3

    $s nnEnjoy!");

    And then including “$rawRecipient” as the 4th parameter to the sprintf call at the end of the function. Again, you could get fancy here (only include the email address if it’s going to an admin, for example), but whatever, this works. :)

    Okay, with that function done, we just need to change the registration code that calls it. I went to the bb_new_user function in bb-includes/pluggable.php. Just before that function returns there’s an “if ( defined (‘BB_INSTALLING’) )” check. The else case calls bb_send_pass (the function we just changed). Add a third parameter (sending ‘true’), and the registration code should now send an email to you instead of the newly registered user.

    As a final touch, I updated the registration success page (bb-templates/kakumei/register-success.php in my case), telling the user that an admin will verify their request and then email them.

    Hope this helps someone out.

    #56260

    In reply to: bbpress possibilities

    billsaysthis
    Member

    I’m new to bbPress so apologies if this is covered elsewhere and my searching didn’t turn up a previous answer…

    Is there any documentation or more complete explanation of what is meant by “just embed your bbPress install around your WP theme, it will be calling the wordpress stuff for the sidebar and then have your forum on something like a WP ‘page’.”?

    #62180

    In reply to: help please anyone…

    livibetter
    Member

    sub-domain? did you mean add-on domain?

    You just need to move (re-install) all bbPress files up a level. If you installed them into public_html/konpaforum.com/bbpress/, then mv public_html/konpaforum.com/bbpress/* public_html/konpaforum.com/

    If you want to integrate into WordPress, then leave them and install WordPress in public_html/konpaforum.com/, would be a good idea.

    #62179

    In reply to: help please anyone…

    alezla
    Member

    hey guys thanks, like goldfinger said everything is installed in a folder

    titled bbpress. I’ve reinstalled in several places, but with no success. I

    don’t know if its because im using a sub-domain not sure. Anyways I will

    keep trying, I’m also going to try to install wordpress first. thanks again.

    #62177

    In reply to: help please anyone…

    goldfiinger
    Member

    You have installed everything to a sub folder called bbpress. If you want your index page to be the forum i think u may need to reinstall moving everything to the public_html folder rather than it being there within a folder called bbpress.

    Other than that you could create a index page that just forwards the user to http://konpaforum.com/bbpress/

    #62176

    In reply to: help please anyone…

    chrishajer
    Participant

    Oh yeah, this doesn’t look right (the path is wrong):

    http://konpaforum.com/bbpress/

    :D

Viewing 25 results - 58,451 through 58,475 (of 63,980 total)
Skip to toolbar