Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 64,226 through 64,250 (of 64,292 total)
  • Author
    Search Results
  • #49567

    The rewrite-rules.php file has a few typos. Try this:

    https://bbpress.org/documentation/faq/#pretty-permalinks

    #49702

    In reply to: Can’t Login!

    Aaron
    Participant

    Yeah, that was a little confusing. Thanks for clarifying.

    FYI, I just recieved an email from the bbpress dev mailing list about this being updated. It is now less confusing on the config sample to.

    #49700

    In reply to: Can’t Login!

    Aaron
    Participant

    When I use this option

    $bb->wp_table_prefix = false; // 'wp_'; // WordPress table prefix.

    Set it to true, and use my prefix, I am running into this error:

    bbPress database error: [Table 'dbname.1users' doesn't exist]

    SELECT * FROM 1users WHERE user_login = 'ergate' AND SUBSTRING_INDEX( user_pass, '---', 1 ) = '*****[moderated]*****'

    bbPress database error: [Table 'dbname.1users' doesn't exist]

    SELECT * FROM 1users WHERE user_login = 'ergate'

    Even if I intentionally put the wrong db prefix, it still gives this same error.

    But as long as I use keep using the old integration code in the config file

    // use the WP user table for your bbpress user list

    define('CUSTOM_USER_TABLE', 'wp_users');

    the login works just fine.

    #49724

    In reply to: installing … error

    Those two line look fine to me.

    You are definitely missing files, though: http://www.thai-boxing.org/muay-thai-forum/bb-includes/

    Not all of them are there.

    Are you trying to integrate bbPress with WordPress? That would explain why bbPress did not complain that wp-functions.php was missing.

    #49747

    In reply to: Using WP template tags

    Try

    require_once(dirname(dirname(__FILE__)) . '/wp-config.php');

    in bbPress’ config.php.

    #49773

    In reply to: Permalinks?

    #49743

    In reply to: Keep bbPress Light

    mozey
    Member

    So you want to have two sets of plugins?

    If you find youself wanting to do this, go for a second instllation. (make sure you use different prefix if you want to use the same database).

    #49699

    In reply to: Can’t Login!

    I had the same problem, but after reading the Ulitmate bbPress Guide (http://www.devlounge.net/articles/the-ultimate-bbpress-guide/1/) I realised I had made mistakes on these lines of my config file:

    #

    $bb->wp_table_prefix = false; // 'wp_'; // WordPress table prefix.

    #

    $bb->wp_home = false; // WordPress - Options->General: Blog address (URL) // No trailing slash

    #

    $bb->wp_siteurl = false; // WordPress - Options->General: WordPress address (URL) // No trailing slash

    I replaced the FALSE with TRUE instead of adding the actual urls and the'wp_'. Your problem might be completely different but maybe you made the same mistake as I did?

    As a side note it seemed obvious to me that if it wasn’t FALSE then I should set it to TRUE, but maybe not everybody agrees.

    hth

    #49742

    In reply to: Keep bbPress Light

    ear1grey
    Member

    I wonder if the plugins page should itself be output from a plugin so it could be replaced with an alternative.

    #684
    mozey
    Member

    how about some nice permalinks?

    something like what http://www.vbseo.com/ does for VB.

    For the sake of keeping BBpress light. Could this be implented with a plugin?

    #49741

    In reply to: Keep bbPress Light

    mozey
    Member

    I cant agree with more rigour

    #49399

    In reply to: New bbPress Forums

    tommyswf
    Member

    i would try this.

    #49746
    r00t9
    Member

    got the answer with this post https://bbpress.org/forums/topic/4?replies=3#post-16

    thanks

    #676
    jazzle
    Member

    I just wanted to start a thread to express my strong belief that bbPress should stay as light as possible.

    For example, there is talk in this forum about emoticons. I believe that they, and similar things should be made as plugins only.

    As long as the admin page for plugins remains clean (unlike the wp one imho) this will be fine.

    Perhaps plugins should be categorised.

    #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!

Viewing 25 results - 64,226 through 64,250 (of 64,292 total)
Skip to toolbar