Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,801 through 59,825 (of 64,535 total)
  • Author
    Search Results
  • #55808
    intellivision
    Participant

    Anyone have allow-youtube.zip? The link at the top is 404’ing.

    Thx

    #55807
    chanzero
    Member

    I second nolageek’s request :)

    #58410
    neyoung
    Member

    Kahil, your method works well if your users use their login name as their display name. However if a user who’s login is user23 changes his display name to John Doe then your code looks for this image. /forum/avatars/John Doe.jpg instead of the correct avatar image which would be /forum/avatars/user23.jpg. I couldn’t figure out a clean way to fix this (I’m using wpmu, not wordpress). But here’s a dirty hack.

    <?php
    $comment_author_dn = get_comment_author();
    $comment_author = $wpdb->get_row("SELECT <code>user_login</code> FROM <code>wp_users</code> WHERE <code>display_name</code> = '$comment_author_dn'");
    echo '<img id="comment-avatar" height="50" width="50" src="/forums/avatars/' . (empty($comment_author->user_login) ? "default" : $comment_author->user_login) . '" alt="avatar" />';
    ?>

    That code should find images for a user if they use a display name or not.

    /shrug

    I haven’t fully tested it, but it seems to work ok.

    #2416
    iyiinsan
    Member

    I have setup a WordPress blog and a bbPress forum, installed setCookie plugin to WordPress and added $bb->usercookie, $bb->passcookies, $bb->cookiedomain and $bb->cookiepath preferences correctly (I assume) to config.php of the bbPress intallation.

    Logging in and out works great, I can login from either WordPress or bbPress and it would login to both sites. But once I login, I cannot do any administrative changes (delete/modify posts) or even go to /bb-admin. Trying to delete a post will give me an error saying I don’t have enough priviliges, and going to bb-admin will just redirect me to homepage. (And my user level is key-master.)

    But once I comment out the cookie info from the configuration file, it works as it’s supposed to.

    Any ideas how I can fix this?

    #60633
    Sam Bauers
    Participant

    You shouldn’t underestimate yourself _ck_, alot of the bugs in Trac that I have seen in the past are well within your range. You should try out a couple.

    #60707

    In reply to: 支援中文字吗?

    _ck_
    Participant

    Yes there are several bbPress forums in Chinese language.

    http://backlink.cn/

    http://bbpress.net.cn/

    几个论坛存在

    #60632
    _ck_
    Participant

    Oh sorry for misleading. Nothing I do really helps the codebase other than to nag about bugs ;) I don’t consider myself experienced enough in that regard.

    But I do try to write my share of plugins and themes and I hope to help attract other coders for the actual codebase.

    #2415
    dnw
    Member

    Hi. I’ve just installed bbPress for first time. Can’;t for life of me find how to make a topic stick. I’ve searched the forums and seen references to making a topic sticky and differences between making it stick to forum or front page…but I can’t see anywhere when posting a topic where I can do this.

    Help please. I’m not usually this thick.

    #2414

    Topic: MachForm Forum

    in forum Showcase
    yuniar
    Member

    There aren’t lot of changes, but bbPress by far is the most easiest forum to integrate with my site theme.

    Please take a look if you have a minute:

    MachForm – PHP Form Builder

    Any comments are welcome.

    Thanks for writing bbPress!

    Oh btw, I’m using Drupal + bbPress for the whole site.

    #60734
    biodrama
    Member

    Thanks! That was the problem. I am happy to learn that .htaccess really wasn’t there, and it wasn’t my eyes playing tricks. I probably shouldn’t be playing around with BBPress until it reaches version 1, since I know zilch about php, but I just love the clean look & simple functionality.

    #2412
    biodrama
    Member

    I just upgraded BBPress to 0.8.2.1. Upgrade instructions say to keep the .htacess file. I looked in every folder of my BBPress install, but couldn’t find i, although I found config.php. Upgraded anyway, and it looked like it worked, but posts are not available. Error reads:

    Not Found

    The requested URL /bbpress/topic/13 was not found on this server.

    Apache/2.0.59 (Unix) PHP/5.2.1 DAV/2 mod_ssl/2.0.59 OpenSSL/0.9.7l Server at localhost Port 8888

    I am just fooling around running BBPress on MAMP locally, trying to learn a little bit about it, but I feel like an idiot since I can’t even find .htacess. How can I fix my installation?

    #60515
    Jaithn
    Member

    hey folks,

    i even found a new problem!

    i can’t add links to my posting in my mainblog. i succesfully integrated wpmu with bbpress and now the links don’t work anymore.

    when i add a link, the post only shows <a>words</a>.

    did i allready tell you guys that i’m using wpmu?

    any ideas?

    thx,

    jaithn

    #60514
    Jaithn
    Member

    hey folks,

    i even found a new problem!

    i can’t add links to my posting in my mainblog. i succesfully integrated wpmu with bbpress and now the links don’t work anymore.

    when i add a link, the post only shows <a>words</a>..

    did i allready tell you guys that i’m using wpmu?

    any ideas?

    thx,

    jaithn

    #60513
    Jaithn
    Member

    actually, i don’t know where to look. i checked the feed-files both in bbpress and in wordpress. but i can’t find the error in their. also it startet after the integration..so it has to do something with it. any more ideas?

    what about the 2. problem. i can’t download files. any more hints?

    thx,

    jaithn

    #60732
    warmechoco
    Member

    this whas kinda my persuasion to choose for bbpress, so I could login from Iframes.. I knew nothing about forums (only phpBB: but this wasn’t easy to work with in iframes)… what a shame :)

    #49635

    In reply to: Emoticons For bbPress?

    neyoung
    Member

    If you’d like emoticons to show up in your private messages here’s how. Open up bb-emoticons.php . After line 242 which contains

    bb_add_filter('post_text', array(&$bbemoticons, 'convert_smilies'));

    Add the following.

    bb_add_filter('pm_text', array(&$bbemoticons, 'convert_smilies'));

    This will display the emoticons within your your private messages

    #52917
    spencerp
    Member

    FYI: Found this on a backup CD of mine:

    http://spencerp.net/downloads/AuthPress.php.txt

    Maybe someone can tweak it for PHP5? I dunno, I’m not a PHP Pro.

    #60729
    chrishajer
    Participant

    Oh boy – just search these forums for integration.

    https://bbpress.org/forums/tags/integration (threads tagged integration)

    This was a good summary I thought:

    http://www.adityanaik.com/integratepress-part-i/

    Normally, people adjust the template of their forum to match their website. I haven’t seen one in an iframe yet, and don’t know enough about form submission (login form) and redirection and htaccess rewrite rules to know if it would work like that.

    #2410
    #2408
    #60631
    fel64
    Member

    _ck_, are you saying that you will also contribute to the bb codebase or are you just talking about something unrelated?

    > The rush job on the WP 2.3 release is suspect.

    Maybe something for the WP forums.

    I think there might be reduced bb activity for a while as mdawaffe will be working on backPress if I understood that right. The work will also be useful to bb, but bb is not the sole aim of the project.

    [Edit] Thanks for taking care of that duplicate for me, Trent.

    #2407
    kehlers
    Member

    I have a site in which I’m using bbPress for user login/registration, but I also have Gallery2 installed for photo gallery. Gallery is configured in “embedded” mode, so that bbPress login is used – i.e. a unified login.

    When I try to type quotes in a text field in the embedded Gallery, I get escaped quotes (i.e. ” turns into /”). This doesn’t happen in bbPress, but it also doesn’t happen in the NON-embedded Gallery. So, it has to be something to do with the interaction of the two applications.

    The thing is, I am out of ideas. bbPress turns off magic quotes w/in the code, and so does Gallery2, plus it’s off in my php.ini. Is there some code within bb-load.php or other included files which parse all text fields? Any thoughts?

    Nola1974
    Participant

    That’s pretty amazing. I absolutely love the concept too. GREAT site.

    #60629
    talgalili
    Member

    Hi _ck_, thanks for giving your frames of time.

    BTW: to what problems/limitation of WP, are you referring to ? (I am curious to know)

    #60628
    _ck_
    Participant

    I’ll be getting back to bbPress, devoting much more time to my bbPress showcase/plugins/themes in October and hopefully that will help in it’s own little way to promote bbPress adoption (and therefore my original scheme of attracting more coders to it).

    The rush job on the WP 2.3 release is suspect. I personally felt it was way too soon and could have benefited from much more. I recently installed 2.3 for a new site and kept asking myself why are there the same problems/limitation I encountered with my first 2.0 setup? I notice 2.3 just happens to coincide with the release of the new “WordPress for Dummies” book and I believe the author is a close friend of Matt’s? Hmm. But oh well, enough ranting about WP and back to nagging about bbPress :-)

Viewing 25 results - 59,801 through 59,825 (of 64,535 total)
Skip to toolbar