Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,101 through 59,125 (of 64,471 total)
  • Author
    Search Results
  • #61988
    anasohbet
    Member

    Thanks refueled! Perfect bbPres theme

    #61964
    Sam Bauers
    Participant

    user_nicename isn’t what you are after. You want the display_name column. user_nicename in WordPress is a URL safe version of the username. Future versions of bbPress will utilise this field for that purpose too.

    #61999
    hishamabu
    Member

    This has now been fixed. Again, thank you livibetter.

    #61998
    hishamabu
    Member

    Thank you so much for your response livibetter, but I’m not getting this at all. I’m not a programmer/coder by any stretch of the imagination. My abilities go no further than copy & pasting code.

    With regards to Unix sockets, I’m on a Dreamhost hosting package if that helps at all.

    Can you please tell me how the trac thing work?

    Thank you again.

    #61997
    livibetter
    Member
    #2700
    hishamabu
    Member

    Hello,

    I am trying to install bbPress onto the same Database I have installed WordPress. But I keep getting an error (see below).

    As far as I’m aware I have filled in the appropriate config.php information. With the same information that I’ve got on the WordPress wd_config.php.

    But still no luck. Both WordPress and bbPress have been downloaded from the official websites merely a few days back.

    Warning: mysql_get_server_info() [function.mysql-get-server-info]: Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’ (2) in /home/.stinkybutt/vault21/ibnmuslim.com/abdi/forums/bb-includes/db-mysqli.php on line 80

    Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in /home/.stinkybutt/vault21/ibnmuslim.com/abdi/forums/bb-includes/db-mysqli.php on line 80

    I really do appreciate any and all help with regards to this matter.

    Kindest regards

    Hisham

    #61987
    refueled
    Member

    Thanks Trent! I have more bbPress themes on the way!

    #61986
    Trent Adams
    Member

    That is a beauty! I really like that one and might have to come up with a use for it ;)

    Trent

    #61949
    Trent Adams
    Member

    bbPress and WP are easily integrated so that bbPress uses the wp_users table in the database, so what you are trying to accomplish is very easy to do. As for embedding gallery into WP, from personal experience it works fine and permalinks are configurable. I would check https://wordpress.org/support/ for more data on that though, but integrating the 3 should be pretty easy and straight forward! Integration is covered in the “FAQ” link of this forum!

    Trent

    #2699
    refueled
    Member

    I have just released my latest bbPress theme: Misty Morning.

    Demo

    Download

    I also have a matching WordPress theme:

    Demo

    Download

    Let me know what you think!

    #61970
    toxicshocktv
    Member

    I actually already tried that. Here’s my config as of now:

    <?php

    // ** MySQL settings ** //

    define(‘BBDB_NAME’, ‘toxicsho_bbpress’); // The name of the database

    define(‘BBDB_USER’, ‘toxicsho_****’); // Your MySQL username

    define(‘BBDB_PASSWORD’, ‘******’); // …and password

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change these last few

    define(‘BBDB_CHARSET’, ‘utf8’); // If you are *upgrading*, and your old config.php does

    define(‘BBDB_COLLATE’, ”); // not have these two contstants in them, DO NOT define them

    // If you are installing for the first time, leave them here

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // The full URL of your bbPress install

    $bb->uri = ‘http://www.toxicshock.tv/board/&#8217;;

    // What are you going to call me?

    $bb->name = ‘Toxic Shock TV Forum’;

    // This must be set before you run the install script.

    $bb->admin_email = ‘toxicshocktv@gmail.com’;

    // Set to true if you want pretty permalinks, set to ‘slugs’ if you want to use slug based pretty permalinks.

    $bb->mod_rewrite = ‘false’;

    // The number of topics that show on each page.

    $bb->page_topics = 30;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 60;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = 0;

    // Change this to localize bbPress. A corresponding MO file for the

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = ”; // Example: ’64f1b30caafe’

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave it as it is.

    $bb->wp_table_prefix = ”; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ”; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ”; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?>

    #61960
    jamwol
    Member

    anybody? I want to only show the user_nicename field everywhere on bbpress not user_login.

    #61921

    In reply to: Replace word in Post

    livibetter
    Member

    I just finished uploading talkPress 002: A Simple bbPress Plugin – Bad Words Filter. You can watch this here.

    The code mentioned in video is:

    <?php
    /*
    Plugin Name: Bad Words Filter
    Plugin URI: http://www.livibetter.com/
    Description: Removing bad words from post content
    Author: Yu-Jie Lin
    Author URI: http://www.livibetter.com/
    Version: 0.1
    */

    function BadWordsFilter($post_text) {
    // $post_text = str_ireplace('bad', '*****', $post_text);

    $bad_words = array('bad', 'topic', 'cialis');
    foreach($bad_words as $bad)
    // $post_text = str_ireplace($bad, '*****', $post_text);
    $post_text = preg_replace("/\b$bad\b/i", '*****', $post_text);

    return $post_text;
    }

    add_filter('post_text', 'BadWordsFilter');
    ?>

    #61969
    chrishajer
    Participant

    The quick and easy solution is to turn off permalinks in the config until you get the rewrite rules sorted out.

    Would this solution that someone posted today be of use?

    https://bbpress.org/forums/topic/problems-with-navigation-to-profile-page-and-posting?replies=4#post-12589

    #61965
    chrishajer
    Participant
    #2697
    #2696

    Profile links in bbPress are setup off the username of the user. However, if that username has a space or two in it, the profile doesn’t show.

    Example: http://www.smart-kit.com/social/profile/Dr.%20R.L.%20Kaplan

    Is there a way to fix that without editing all the profile usernames?

    #61954

    In reply to: Website links…

    ichimanako
    Member

    Also, _ck_ and fel64 i have another problem. Subforums are showing on the front page, no matter if i put

    if( !$forum->forum_parent )

    on front-page.php

    ( https://bbpress.org/forums/topic/subforums-and-markup?replies=12 )

    #2695
    #61952

    In reply to: i need …

    العاب
    Member

    chrishajer,Thank you!

    1.the FCK wysiwyg editor is very Nice … but how i can install it in my BBpress ?

    2.This sitemap : http://boakes.org/download/bbpress_sitemap.txt

    not working whith 0.8.3

    3.I will try to add this code .

    Thank you agin … By.

    #61951

    In reply to: i need …

    chrishajer
    Participant

    1. You can integrate FCK Editor or TinyMCE if you are looking for a wysiwyg editor.

    http://www.fckeditor.net/

    http://tinymce.moxiecode.com/

    1a. To allow all that type of content, you’re going to need a plugin. Check out this thread:

    https://bbpress.org/forums/topic/plugin-youtube-in-bbpress?replies=18#post-5707

    2. Does the regular sitemap plugin NOT work with 0.8.3? I never tried it. http://boakes.org/download/bbpress_sitemap.txt

    3. To show hot tags, you are going to need to edit the template files for each page, then insert this tag where you want it:

    <p class="frontpageheatmap"><?php bb_tag_heat_map(); ?></p>

     

    Depending on the layout of each of your pages, you might need to create a new div to insert that tag heat map into, or maybe there is room inside an existing div.

    The things you are asking for are going to require a substantial amount of work on your part. It can all be done (probably) but it’s not going to be super quick.

    Good luck.

    #2693

    Topic: i need …

    in forum Installation
    العاب
    Member

    Hello ,

    i’m use BBpress version 0.8.3 and i need some thing to it :

    1. i need wysiwyg editor which i can with it enter an IMG , SWF , WAV , RAM , RM , MPEG and more …

    2.i need google sitemap which work whit 0.8.3

    3.i need to show the hot tags in all pages .

    thanks for all , and i am sory for my bad english

    #2691
    djpumpkin
    Member

    I am looking at WP and bbPress as a way of extending my G2 install functionality.

    I know I can link G2 log-in to WP login, and I know that WP and bbPress can be linked – but will they all play nicely together?

    Also, in gallery2 I use permalinks which enable my users to have a short URL a bit like MySpace. Will this still work in an ’embedded’ situation?

    Thanks

    DJ

    #61923

    In reply to: Excerpts

    Doobus
    Member

    I’ve already looked into that as a viable solution, but WordPress’ back-end just complicates things for new users. bbPress is a lot simpler solution in that a forum is built around the idea of community, I’m just theming it not to look like a forum for advertising purposes, everyone knows that the ctr for forums are terrible. Plus I already gutted Kakumei beyond recognition, can’t turn back now :).

    Anyhoo, anyone know of how to put excerpts?

    #61791

    In reply to: Deleting bogus users

    chrishajer
    Participant

    There has been some talk of looking into the registration process.

    http://comox.textdrive.com/pipermail/bbdev/2007-December/001764.html

    Also, how about the enhanced registration plugin?

    https://bbpress.org/forums/topic/plugin-enhanced-registration?replies=17

    And a while back, someone commented that it took only a few minutes to delete the bad registrations every day. Can’t find a link to that post right now…

Viewing 25 results - 59,101 through 59,125 (of 64,471 total)
Skip to toolbar