Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 63,901 through 63,925 (of 64,394 total)
  • Author
    Search Results
  • #49469
    teknoseyir
    Member

    Hi,

    I’ve finished translating bbPress into Turkish from that given .po file. Thanks Falo. But, is this an official .po file?

    There are some problems, for example time items are not translatable, some missing strings and a problem in profile page.

    If I translate “Edit” into my language the link of edit page also changes; and we cannot edit the profile. And also, similar problem in “Favorites” string. If we translate “favorites” the link of favorites page changes as well.

    Finally, I’ve translated “Allowed tags: a em strong code ul ol li blockquote.
    Put code in between backticks.” string, but it does not affect on site.

    Thanks!

    Hasan.

    #51017
    iggy22
    Member

    Hi guys. I seem to be getting the same thing as well.

    Got through the installation all right. Very basic installation. Nothing fancy with subdomains, just straight directory installation to http://brettcrhodes.com/bbPress

    Can log in as “admin” all right.

    Can’t view “admin” user profile which is supposed to be here: http://brettcrhodes.com/bbPress/profile/1

    The /profile/1 directory and file doesn’t exist.

    Can’t view topic at: http://brettcrhodes.com/bbPress/topic/1

    The /topic/1 directory and file don’t exit.

    Can add forums and topics but can view them as subdirectories don’t seem to be getting created.

    Any thoughts or suggestions?

    Thanks.

    #898
    iggy22
    Member

    Hi guys. Hope someone might know what I did wrong here.

    Got through the installation all right.

    Can log in as “admin” all right.

    Can’t view “admin” user profile which is supposed to be here: http://brettcrhodes.com/bbPress/profile/1

    The /profile/1 directory and file doesn’t exist.

    Can’t view topic at: http://brettcrhodes.com/bbPress/topic/1

    The /topic/1 directory and file don’t exit.

    Can add forums and topics but can view them as subdirectories don’t seem to be getting created.

    Any thoughts or suggestions?

    Thanks.

    #50358

    In reply to: Cannot select DB.

    bskiba
    Member

    I am in the same camp. SuSE linux server, copied code up and keep on getting “Cannot Select DB”.

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

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

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

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    Tried other DB names (began with bbpress as per sample).

    Are there any other directory rights or other things that need to be set?

    #50020

    In reply to: bbPress new Theme

    It doesn’t generate thumbnails, its just setting the width of the image thats linked to be something i set. I will be publishing all this stuff on my forum soon. Im just running more test.

    Btw. check it out http://www.talkaboutdesign.com/forum/

    i did more updates, and added a css tab menu on top. Keep checking for more updates. In the near future ill also have a dl theme.

    #50019

    In reply to: bbPress new Theme

    peiqinglong
    Member

    Sweet! Cool thanks!

    How did you make it so that it auto generates thumbnails off the image?

    #51052

    In reply to: multiple forums

    To add a forum to a bbpress installation you just need to go in the admin panel (`http://www.yoursite.com/where_bbpress_is_installaed /bb-admin/ and add new forum using Content->Forum option under the admin menu… tha’s all.

    Creating a new set of tables with a different prefix name will create a whole new FORUM withe it’s own forums inside… maybe the use of the same term made the misunderstanding… bbPress is a forum management system with a series of Forum inside it….

    #50018

    In reply to: bbPress new Theme

    Finally i got this working. Check out my lightbox integration. I made it so when u type in [img]link.jpg[/img]

    it shows up in a post as a thumbnail, and then when u click it it takes u to original image and displays it in a lightbox.

    http://www.talkaboutdesign.com/forum/topic.php?id=4&replies=3

    #890

    Topic: multiple forums

    in forum Installation
    gogarth
    Member

    I am probably being very stupid, but having installed bbPress I don’t seem to be able to add any more forums. I changed the bb_table_prefix in the config.php file, which resulted in a second mySQL database being set up, but the user only sees one forum. What am I doing wrong?

    #50916
    Atsutane
    Member

    Do u mean something like this? http://www.atsutane.net/images/bbpressfavor.jpg

    #51043

    For Italian localization I used the word “Marcatori” for HTML tags, thinking about the meaning of HTML where M stay for markup. I think in english the Markers words can be used as well… what do you think ? For Tags an alternative words could be KeyWords even if actually Tags is widly used for the scope tags are used in bbPress.

    #50935
    agop
    Member

    Есть:

    bbpress.ru

    #50017

    In reply to: bbPress new Theme

    #51022
    Atsutane
    Member

    Even if you get the right time for your post. My freshness still gonna be -1 year. It all happen to the newest post i make but the time posted is correct. Maybe it was a bug inside bbpress freshness function.

    #50985
    gsnixon
    Member

    Ok, so I have the exact same issue with the k2 sidebar module. However, I think this means the issue somewhere in the widget plugin API.

    Atsutane – I think this may be a solution for your akismet problem. Try disabling the K2 sidebar module plugin, and enabling Akismet. Does bbpress still work? If yes, comment out lines 374 to 475 of akismet.php, that is, from right before

    function widget_akismet_register() {

    to right after

    add_action('init', 'widget_akismet_register');

    This should allow you to use both plugins at the same time.

    Let me know if that works.

    #50016

    In reply to: bbPress new Theme

    peiqinglong
    Member

    I like the lightbox integration…any directions on how to do it?

    #51033
    suleiman
    Member

    Try the following:

    <?php

    // ** MySQL settings ** //

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

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

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

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    define(‘USER_BBDB_NAME’, ‘wpmu_db_name)’); //your WPMU DB name

    define(‘USER_BBDB_USER’, ‘wpmu_db_username’); // Your WPMU DB username

    define(‘USER_BBDB_PASSWORD’, ‘password’); // …and password

    define(‘USER_BBDB_HOST’, ‘localhost’);

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

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

    define(‘CUSTOM_USER_TABLE’, ‘wp_users’);

    define(‘CUSTOM_USER_META_TABLE’, ‘wp_usermeta’);

    // If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.

    // Adjust the domain and path to suit your actual URL.

    // Just the domain name; no directories or path. There should be no trailing slash here.

    $bb->domain = ‘http://hadithuna.com&#8217;; // Example: ‘http://bbpress.example.com&#8217;

    // There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.

    $bb->path = ‘/forums/’; // Example: ‘/forums/’

    // What are you going to call me?

    $bb->name = ‘Hadithuna Communnity Forums’;

    // This must be set before running the install script.

    $bb->admin_email = ‘webmaster@hadithuna.com’;

    // Set to true if you want 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’, ”);

    $bb->usercookie = ‘wordpressuser’;

    $bb->passcookie = ‘wordpresspass’;

    $bb->cookiedomain = ‘hadithuna.com’; // or .example.com if there was a . above

    $bb->cookiepath = ‘/’;

    // 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 = false;

    // define(‘CUSTOM_USER_TABLE’, ‘wp_users’);

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

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

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

    $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

    /* Stop editing */

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

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

    ?>

    #51036

    In reply to: different layout ?

    peiqinglong
    Member

    To rearrange the stuff, create my-templates directory in your bbpress directory. Make a copy of the files inside bb-templates and copy them to the my-templates.

    Edit the front-page.php file. That is where you can rearrange what goes where.

    To get the background like here, you have to integrate your bbpress to your wordpress like http://www.abunchofcars.com/forums

    #49835

    In reply to: Comments in WordPress

    fooddude
    Member

    This is a great plugin… but, I don’t want every post to go to bbpress. It would be really cool to have a checkbox, that would only send it to bbpress if it was checked. Anyone care to tackle that?

    #885

    Topic: different layout ?

    in forum Themes
    n22
    Member

    how to change layout?

    now, the layout of my forum is like: http://n22.awardspace.com/forums


    header


    —-tag


    last disc.–


    forums—-


    view



    footer


    i want to change it to :


    header



    last disc.



    forums



    tag



    view



    footer


    (center all those things)

    what should i do?

    and how about adding a background wallpaper just like this bbpress forums?

    #884
    #50983
    Atsutane
    Member

    gsnixon,

    the problem i have with ultimate tag warrior is because bbpress using the same name function. About akismet, i don’t know what causing it. FYI i dont have any widget plugin install. I only use k2 sidebar module.

    #50015

    In reply to: bbPress new Theme

    Next thing on the list is making img tags switch to display the way i want them to, using a specified width thumbnail, and then upon clicking showing full image using lightbox.

    If anyone has any ideas about this, please share your thoughts.

    #50981
    gsnixon
    Member

    Ok, so I tested all the combinations of the last two versions of WP and BBP… so its obviously something with my configuration.

    But I found that if I install and activate the incriminated plug-ins in WordPress before trying to run the install script for BBpress, it returns the following error:

    WordPress database error: [Table 'database.bb_forums' doesn't exist]

    SELECT option_value FROM wp_options WHERE option_name = 'widget_text' LIMIT 1

    WordPress database error: [Table 'database.bb_forums' doesn't exist]

    SELECT option_value FROM wp_options WHERE option_name = 'widget_rss' LIMIT 1

    WordPress database error: [Table 'database.bb_forums' doesn't exist]

    SELECT option_value FROM wp_options WHERE option_name = 'sidebars_widgets' LIMIT 1

    WordPress database error: [Table 'database.bb_forums' doesn't exist]

    SELECT option_value FROM wp_options WHERE option_name = 'sidebars_widgets' LIMIT 1

    Now we’re getting somewhere! Anyone? A hint?

    #50979
    gsnixon
    Member

    Atsutane (if you read this) – did you every get the issue you mentioned in https://bbpress.org/forums/topic/38?replies=46#post-862 resolved? That seems to be perhaps a similar predicament… You said you have akismet and ultimate tag warrior installed… do you have the Widgets plugin installed?

Viewing 25 results - 63,901 through 63,925 (of 64,394 total)
Skip to toolbar