Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 63,976 through 64,000 (of 64,029 total)
  • Author
    Search Results
  • #49755
    jazzle
    Member

    This is probably because you have have $bb->mod_rewrite = true; but no .htaccess file.

    Have a look at https://bbpress.org/forums/topic/13

    #49588

    In reply to: Emoticons For bbPress?

    chaaban
    Member

    i’m a total newbie in bbpress … but in wordpress you could use instead of the url .. the blog url example :

    get_settings(‘siteurl’);

    to get the blog url …

    #49587

    In reply to: Emoticons For bbPress?

    gnawph
    Member

    Oops, removed my site specific urls.

    Well, the point of the entire plugin is to integrated with WordPress. I wouldn’t want to have my smiley images stored in two different locations and I’m not entirely sure were to edit my default WP smiley locations.

    #49586

    In reply to: Emoticons For bbPress?

    chaaban
    Member

    i think first thing to be changed should be the src .

    src=’http://www.cfv88.com/wp-includes/images/smilies/$img’ alt=’$smiley_masked’ class=’wp-smiley’ /> “;

    to make it something related to the forum and not on external links …

    you could make a new folder called image where all images are inside … and fix the url …

    #49585

    In reply to: Emoticons For bbPress?

    gnawph
    Member

    I wanted that functionality as well so I ripped some WP code, played around, and finally got something I could use. This is a highly sloppy work as I am out of practice and not really a great PHP programmer anyway. The plugin is mostly a rip of the WordPress code with a filter. It is not elegant or tested completely but so far it has been getting the job done.

    Note: This plugin will not work without a default install of WordPress.

    You have to create a directory called /my-plugins/, copy this code into a file called whatever-you-want.php, upload and enjoy!

    Feedback appreciated! Maybe I can improve on this and increase my PHP/*press skills. ;)

    <?php

    /*

    Plugin Name: WordPress Smiley Integrator .0002

    Plugin URI: none

    Description: Gives WordPress Smiley Functionality to bbPress

    Author: John Farrell

    Version: 1.0

    Author URI: none

    */

    function convert_smilies($text) {

    $wpsmiliestrans = array(

    ':mrgreen:' => 'icon_mrgreen.gif',

    ':neutral:' => 'icon_neutral.gif',

    ':twisted:' => 'icon_twisted.gif',

    ':arrow:' => 'icon_arrow.gif',

    ':shock:' => 'icon_eek.gif',

    ':smile:' => 'icon_smile.gif',

    ' :???:' => 'icon_confused.gif',

    ':cool:' => 'icon_cool.gif',

    ':evil:' => 'icon_evil.gif',

    ':grin:' => 'icon_biggrin.gif',

    ':idea:' => 'icon_idea.gif',

    ':oops:' => 'icon_redface.gif',

    ':razz:' => 'icon_razz.gif',

    ':roll:' => 'icon_rolleyes.gif',

    ':wink:' => 'icon_wink.gif',

    ':cry:' => 'icon_cry.gif',

    ':eek:' => 'icon_surprised.gif',

    ':lol:' => 'icon_lol.gif',

    ':mad:' => 'icon_mad.gif',

    ':sad:' => 'icon_sad.gif',

    '8-)' => 'icon_cool.gif',

    '8-O' => 'icon_eek.gif',

    ':-(' => 'icon_sad.gif',

    ':-)' => 'icon_smile.gif',

    ':-?' => 'icon_confused.gif',

    ':-D' => 'icon_biggrin.gif',

    ':-P' => 'icon_razz.gif',

    ':-o' => 'icon_surprised.gif',

    ':-x' => 'icon_mad.gif',

    ':-|' => 'icon_neutral.gif',

    ';-)' => 'icon_wink.gif',

    '8)' => 'icon_cool.gif',

    '8O' => 'icon_eek.gif',

    ':(' => 'icon_sad.gif',

    ':)' => 'icon_smile.gif',

    ':?' => 'icon_confused.gif',

    ':D' => 'icon_biggrin.gif',

    ':P' => 'icon_razz.gif',

    ':o' => 'icon_surprised.gif',

    ':x' => 'icon_mad.gif',

    ':|' => 'icon_neutral.gif',

    ';)' => 'icon_wink.gif',

    ':!:' => 'icon_exclaim.gif',

    ':?:' => 'icon_question.gif',

    );

    // generates smilies' search & replace arrays

    foreach($wpsmiliestrans as $smiley => $img) {

    $wp_smiliessearch[] = $smiley;

    $smiley_masked = htmlspecialchars( trim($smiley) , ENT_QUOTES);

    $wp_smiliesreplace[] = " <img src='/wp-includes/images/smilies/$img' alt='$smiley_masked' class='wp-smiley' /> ";

    }

    $output = '';

    // HTML loop taken from texturize function, could possible be consolidated

    $textarr = preg_split("/(<.*>)/U", $text, -1, PREG_SPLIT_DELIM_CAPTURE); // capture the tags as well as in between

    $stop = count($textarr);// loop stuff

    for ($i = 0; $i < $stop; $i++) {

    $content = $textarr[$i];

    if ((strlen($content) > 0) && ('<' != $content{0})) { // If it's not a tag

    $content = str_replace($wp_smiliessearch, $wp_smiliesreplace, $content);

    }

    $output .= $content;

    }

    return $output;

    }

    //add the filter

    add_filter('post_text', 'convert_smilies');

    ?>

    #679
    mnystedt
    Member

    I’ve tried installing BBPress several times, but I guess I do something wrong because I keep getting this problem.

    Like when I click on a topic, the “Your first topic” for example, I get

    “The requested URL /forum/topic/1 was not found on this server.”

    The URL seems okay, but I get the error so something’s wrong?

    I can log in to BBPress, but when I go edit my account I get:

    “The requested URL /forum/profile/1/edit was not found on this server.”

    Again, the actual URL seems right.

    I’m sure there’s something simple I’m missing, like I didn’t set something right in config, but I can’t find it. Any ideas?

    #49723

    In reply to: installing … error

    chaaban
    Member

    no it cant be this because i used the same folder on both , 1 worked great but it was on root the other dident work because it wasnt on root …

    is there any error in those 2 lines ?

    $bb->domain = ‘http://www.thai-boxing.org&#8217;;

    $bb->path = ‘/muay-thai-forum/’;

    if i’m installing it on a folder called : muay-thai-forum ?

    here is what i will make to make it easy on my self , i will take the exported .sql database of the bbpress that worked and install it and see what it will do … i’ll let u updated ;)

    thank’s

    #677
    r00t9
    Member

    Hi

    i am getting “Notfound” error when i am installing bbpress on my root folder. i cant access profile/topics/posts can anyone help me where i am going wrong?

    here’s the link http://hyderabadbloggers.com

    #670
    astereo
    Member

    As I did for wordpress many times in various customization articles and free released themes, I have begun to do the same for bbpress in support of the Automattic team and their excellent scripts.

    The Ultimate BBpress Guide goes over installation, customization, and even demonstrates some things that can be done to modify the forum homepage. I tried to be as precise and accurate as possible, so if I made any mistakes anywhere let me know so I can get them corrected quickly.

    Let me know if you find this helpful or not.

    Regards,

    + astereo

    #49584

    In reply to: Emoticons For bbPress?

    ttech
    Member

    OK…

    #49583

    In reply to: Emoticons For bbPress?

    Matt Mullenweg
    Keymaster

    It’s a good idea, I’m sure it’ll happen. Be patient!

    #49718

    In reply to: email subscription

    Nope actually bbPress relay on all notification using feed, You can subscribe a feed in the front page to get all nes post, or add single topics to your personal feed usign the link at the top of the post page named: Add this topic to your favorites (?) and then subscribe it to follow a series of discussion. The feed can be find in your profile page under the favorites section.

    An email subscription could be managed through a plugin like in WP.

    #49582

    In reply to: Emoticons For bbPress?

    ttech
    Member

    Anyone?

    #49511

    In reply to: sample plugins?

    bpartch
    Member

    Plugins

    Using Plugins

    To use a plugin, simply create a directory in your main bbPress directory called my-plugins and put the plugin file in it. bbpress does not currently have a plugin activation/deactivation interface like WordPress’. Any .php file in your /my-plugins directory will be run.

    https://bbpress.org/documentation/customization/

    #49450

    Hi.

    A few japanese users and I are trying to localize.

    They say:

    1. put your-lang.mo into bb-inclues/languages/;
    2. add define (‘WPLANG’, ‘your-lang’); in config.php( line 56 is fine);
    3. add load_default_textdomain(); in bb-settings.php(line 135 is fine);
    4. replace ABSPATH to BBPATH in bb-inclues/i18n.php.

    …and these fixes are work well.

    You can see here: http://hiromasa.zone.ne.jp/files/wordpress/bbPress01.png

    #49670
    astereo
    Member

    I’m in the middle of writing a large guide on customizing bbpress, hopefully I can get it published today if I can get my bbpress fixed anytime soon.

    #671
    #49510

    In reply to: sample plugins?

    quentin
    Member

    There’s no plugin folder in the bbpress distribution. Where to put the php plugin files to be sure they’ll get parsed automatically ?

    #49448
    lstelie
    Member

    hello,

    Please, where could I find the mo file to translate (in French in my xase) and where must i place it on the bbpress install ?

    Thanks

    #49508

    In reply to: your bbpress

    febwa1976
    Member

    ergate – looks great!

    #49507

    In reply to: your bbpress

    kyte
    Member

    Oh that is VERY nice. Well done, ergate!

    #49563

    Copying from this post, by mdawaffe

    mod_rewrite:

    bbPress can generate a sample .htaccess file for you if you log in and browse to bb-admin/rewrite-rules.php. Copy the output and save it into your .htaccess file. Alternatively, you might be able to forgo the rewrite rules and instead set Options +MultiViews

    #49562
    Aaron
    Participant

    This is what I am using

    # BEGIN BBPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /location_of_install/

    Options +MultiViews

    </IfModule>

    # END BBPress

    #49506

    In reply to: your bbpress

    Aaron
    Participant

    Until/if there is a category for showing off, I will go first.

    http://tictalktea.com/

    It is bits and pieces swipped from the wp support forms, and a we changed the colors.

    This install, was in import from punbb. I did not make an import script or anything automated. I did it all by editing the sql files. The bbPress version went live about two weeks ago.

    I have a second a second install, that I did alot of work on the templates, made it all table free.

    I am not yet ready to share that one, but since this forum is up, and all the recent work here at bbPress, I am cleaning it up and re-installing it. Once I have it a little cleaner I will share it to.

    #49505

    In reply to: your bbpress

    kyte
    Member

    I’d like to see what people have done with it, I’m trying to get something happening on my site and I’m failing at the most basic level.

Viewing 25 results - 63,976 through 64,000 (of 64,029 total)
Skip to toolbar