Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 49,126 through 49,150 (of 64,515 total)
  • Author
    Search Results
  • #78530
    gerikg
    Member
    #31616
    Mohamed
    Participant

    Hello,

    This is my 1st try to have a website and I’ve goggled a lot for the tools I may use and found that wordpress is the most highly recommended one.

    Please I do need a forum to be integrated with the website and according to Google it shows that BBPress is the most recommended one to be used with WordPress.

    The question now is that I can find the installation instructions for BBPress standalone but I can not find how to integrate WordPress and BBPress together at all.

    So please may you help me and give me any links for such a thing as it was three hours searching in different places with no luck so far and I do fel very stupid for not catching any result yet.

    I’ve just installed WordPress only without any plugins or any extra just the pure installation and default settings.

    I am sorry if this is a very newbie question but I hope that some one can help.

    Thanks,

    Take care :)

    vlp
    Member

    Tomwi: can you post your code for showing mentioned template

    *post title*

    Posted by: *user* in *forum*.

    or send it to me – procka@tasty.sk

    greets

    Vlado

    #78517

    In reply to: Censored words?

    deadlyhifi
    Participant

    have you tried https://bbpress.org/plugins/topic/cnsor/ ?

    We use it on our site for swearing. Though it doesn’t do wildcards so it would probably be quite easy to get around.

    #31615
    Olaf Lederer
    Participant

    Hi,

    just finished my article about bbpress plugins:

    http://www.web-development-blog.com/archives/useful-plugins-for-your-bbpress-forum/

    if you like the article please vote for the article at dzone:

    http://www.dzone.com/links/useful_plugins_for_your_bbpress_forum.html

    Thanks (Excuse me, if this post is to spammy for the forum)

    Olaf

    #31612
    rahmetli
    Member

    In a few days, I completed the translation of bbPress (1.0.2) from English to Turkish. There I share the link you can download the language file (.mo format):

    http://www.rahmetli.info/translation/bbpress-turkish.zip

    More – Fazlası:

    http://rahmetli.info/forum/forum/bbpress-tr

    English Note: I’ll be waiting for feedbacks to make the translation more understandable, so please e-mail me at ebs [at] rahmetli.info for advices. Thank you.

    Türkçe Not: Türkçe için üstteki adresi ziyaret ediniz. Ve lütfen çeviri hatası varsa size göre ebs [at] rahmetli.info adresini kullanarak geri bildirimde bulununuz. Teşekkürler.

    #78031
    Olaf Lederer
    Participant

    Great than it’s time to change that :)

    #76948
    chandersbs
    Member

    I tried this with Office2007, not working.

    #78286
    gerikg
    Member

    eclipsenow, you can email me too. I have all three working together. Right now I’m changing certain links because the profile has to all point to BuddyPress.

    #77076

    In reply to: bbpress and memcache?

    _ck_
    Participant

    It only loads faster because several parts of 1.0 are still not optimized yet and use too many queries.

    The point is a proper mysql cache, especially if it’s on the local machine, is as fast as memcached unless you have an overloaded mysql server (that is also typically external to the webserver).

    #77075

    In reply to: bbpress and memcache?

    Ben L.
    Member

    When I have memcache enabled on my local server, bbPress loads an average of 20ms faster (a lot for local execution in my opinion), although I haven’t put anything together to test this yet. Memcache works well simply because hard drives are generally slower than RAM.

    #31610
    dogdayfear
    Member

    I have included this piece of code at the top of my index.php file:

    <script language=”javascript”>

    if(top==self)

    this.location=’http://www.somedomein.es/somefolder/page&#8217;;

    </script>

    It checks if bbpress is loaded into an iframe and if not, it redirects to http://www.somedomein.es/somefolder/page and this page load bbpress correctly into an iframe.

    It works perfectly but it breaks the style making the some fonts bigger that they should.

    If I remove the javascript code everything works normally again.

    Any suggestions ?

    Thanks in advance.

    #76507

    Even though it is fixed in https://trac.bbpress.org/changeset/2327

    I svn bbPress 1.0.2 and again I had to chmod the my-templates folder

    #78030
    hpguru
    Member

    Thank you for fast help. This works good now. :)

    #77074

    In reply to: bbpress and memcache?

    _ck_
    Participant

    Glad to see what I am saying confirmed with independent realword proof.

    BTW, just how big is your site that you require multiple db servers?

    I don’t know of a single WordPress+bbPress install, other than Automattic’s that are using multiple db servers.

    (unless of course you are running other apps that have heavy db use or maybe for backup replication)

    #78029
    Olaf Lederer
    Participant

    Hi,

    locate in the plugin file the function

    function create_seo_meta_txt($content) {
    $raw = str_replace(PHP_EOL, ' ', strip_tags($content));
    $raw = str_replace(' ', ' ', $raw);
    $snippet = substring_words($raw, 120, '');
    return htmlentities($snippet, ENT_QUOTES);
    }

    and replace “htmlentities” with “wp_specialchars”.

    Let me know if this works for you. This plugin is a little quick and dirty for these functions :)

    The seo plugin for wordpress has for internationalization huge blocks of code :)

    #77073

    In reply to: bbpress and memcache?

    CK Said:

    On a single computer system with a fast mysql server and fast disk cache, this typically is not a big problem. As a site has to scale this does become a problem because there is only one mysql source and everything has to be fetched from it.

    Interestingly we’re running a WP install with two load balanced app servers and two DB servers… our host has the MySQL tuned up so well that we’re seeing absolutely no advantage when we installed memcached as an object cache. The lesson is: don’t assume, test. Check your queries AND page gen time, then install your proposed enhancements (APC, memcached, whatever) and check your queries and page gen time again… seeing an improvement? Keep the changes, otherwise drop them.

    #31608
    kickerman360
    Member

    Hi,

    I not that good at php so I was wondering if some wouldn’t mind shortening this bit of code:

    <?php  echo('<img src="/forums/avatars/' . $current_user->user_login . '.jpg" />'); ?>
    <?php echo('<img src="/forums/avatars/' . $current_user->user_login . '.png" />'); ?>
    <?php echo('<img src="/forums/avatars/' . $current_user->user_login . '.gif" />'); ?>
    <?php echo('<img src="/forums/avatars/' . $current_user->user_login . '.jpeg" />'); ?>

    Basically it is supposed to go through every file extension allowed by the avatar plugin and display the image with the actual extension, there can be only one.

    It is used to display Avatars in WordPress by the way without loading bbPress.

    Any help would be great!

    #78028
    hpguru
    Member

    Utf-8

    My forum is bbPress 1.0.2 and url is http://keskustelu.hpguru.net/

    Thank you. :)

    PS: There is http://keskustelu.hpguru.net/topic/kayta-googlea ä and ö. And in many others topics.

    #78027
    Olaf Lederer
    Participant

    which encoding do you use utf-8?

    and please send me your URL

    #78497
    Olaf Lederer
    Participant

    didn’t know that there is also a wordpress forum, is this a WP plugin?

    #78483
    Olaf Lederer
    Participant

    There are some discussions about the future of bbpress, check the blog on this website

    #77801
    Ryan Hellyer
    Participant

    Does anyone know how to do this?

    #31606
    ZoeG
    Member

    Hi guys. I’m looking to convert an existing wp-forum install to bbpress. I’ve searched through the forums and haven’t seen anything but am hoping someone has some suggestions on how this might be done. (Or maybe I just missed a search result…) Thank you!

    #31603
    eclipsenow
    Member

    I’m just wondering where it is heading? How do all the requests from users get priority? Do we need to vote on directions, or is there a top-down vision from Automattic? How seriously is a “Portal” approach with WP being considered? (Like SMF & TinyPortal, with latest posts showing on the front page of a WP blog, tighter integration, etc)?

    is there a blog I should be reading for the future of BBpress? Cheers.

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