Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 49,101 through 49,125 (of 64,097 total)
  • Author
    Search Results
  • #31474
    natasheebear
    Member

    Reference URL: http://steeplechasega.info/bbpress/

    I decompressed the bbPress files and uploaded them to my server. I created a database named bikerpro inside my hosting account. I entered in all of the information into the first install screen and now receive the following message:

    A valid configuration file was found at bb-config.php

    You may continue to the next step.

    However, when I attempt to continue to step 2, I end up back on the first page. Once it allowed me into step 2, but when attempted to skip ahead to step 3, I ended up back up on the first step again.

    Please halp!

    #31473
    #77865
    Marius-
    Member

    Well ugh, there is no space there! I’ve checked ten thousand times already.

    <?php
    /**
    * The base configurations of bbPress.
    *
    * This file has the following configurations: MySQL settings, Table Prefix,
    * Secret Keys and bbPress Language. You can get the MySQL settings from your
    * web host.
    *
    * This file is used by the installer during installation.
    *
    * @package bbPress
    */

    // ** MySQL settings - You can get this info from your web host ** //
    /** The name of the database for bbPress */
    define( 'BBDB_NAME', 'michael_forum' );

    /** MySQL database username */
    define( 'BBDB_USER', 'michael_forum' );

    /** MySQL database password */
    define( 'BBDB_PASSWORD', '***' );

    /** MySQL hostname */
    define( 'BBDB_HOST', 'localhost' );

    /** Database Charset to use in creating database tables. */
    define( 'BBDB_CHARSET', 'utf8' );

    /** The Database Collate type. Don't change this if in doubt. */
    define( 'BBDB_COLLATE', '' );

    /**#@+
    * Authentication Unique Keys.
    *
    * Change these to different unique phrases!
    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}
    *
    * @since 1.0
    */
    define( 'BB_AUTH_KEY', 'put your unique phrase here' );
    define( 'BB_SECURE_AUTH_KEY', 'put your unique phrase here' );
    define( 'BB_LOGGED_IN_KEY', 'put your unique phrase here' );
    define( 'BB_NONCE_KEY', 'put your unique phrase here' );
    /**#@-*/

    /**
    * bbPress Database Table prefix.
    *
    * You can have multiple installations in one database if you give each a unique
    * prefix. Only numbers, letters, and underscores please!
    */
    $bb_table_prefix = 'bb_';

    /**
    * bbPress Localized Language, defaults to English.
    *
    * Change this to localize bbPress. A corresponding MO file for the chosen
    * language must be installed to a directory called "my-languages" in the root
    * directory of bbPress. For example, install de.mo to "my-languages" and set
    * BB_LANG to 'de' to enable German language support.
    */
    define( 'BB_LANG', '' );
    ?>

    #77834

    In reply to: I want hide tags

    Read this: https://bbpress.org/documentation/themes/

    See how in step 1 it says to make sure you have a my-templates folder?

    You’ll be putting style.css in /public_html/forum/my-templates/NEWTEMPLATE/

    With a header in style.css like this:

    /*
    Theme Name: The name of your cool new theme.
    Theme URI: Your theme's url. Maybe it's the blog post you wrote about it.
    Description: Describe your theme here. You can be nice and say something like "Blues and Greens in a two-column format" or enigmatic and say "The river here is only waist deep".
    Version: Always number your releases. Please only use numbers and decimal points (yes, we broke our own rule).
    Author: Author of the original theme,
    Author URI: and his or her url.
    Ported By: Name of the person who ported the theme to bbPress (if applicable),
    Porter URI: and his or her url.
    */

    Under that you’ll put your custom CSS like

    topic-tags { display: none; }

    post-form-tags-container { display: none; }

    #76760
    Arturo
    Participant

    the bbPress 1.0.2 and 0.9.0.6 in Italian are available here: http://www.wpmu.it/downloads/

    #77863
    Marius-
    Member

    Well, here the entire thing is, with sensorship:

    <?php

    /**

    * The base configurations of bbPress.

    *

    * This file has the following configurations: MySQL settings, Table Prefix,

    * Secret Keys and bbPress Language. You can get the MySQL settings from your

    * web host.

    *

    * This file is used by the installer during installation.

    *

    * @package bbPress

    */

    // ** MySQL settings – You can get this info from your web host ** //

    /** The name of the database for bbPress */

    define( ‘BBDB_NAME’, ‘michael_forum’ );

    /** MySQL database username */

    define( ‘BBDB_USER’, ‘michael_forum’ );

    /** MySQL database password */

    define( ‘BBDB_PASSWORD’, ‘***’ );

    /** MySQL hostname */

    define( ‘BBDB_HOST’, ‘localhost’ );

    /** Database Charset to use in creating database tables. */

    define( ‘BBDB_CHARSET’, ‘utf8’ );

    /** The Database Collate type. Don’t change this if in doubt. */

    define( ‘BBDB_COLLATE’, ” );

    /**#@+

    * Authentication Unique Keys.

    *

    * Change these to different unique phrases!

    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}

    *

    * @since 1.0

    */

    define( ‘BB_AUTH_KEY’, ‘put your unique phrase here’ );

    define( ‘BB_SECURE_AUTH_KEY’, ‘put your unique phrase here’ );

    define( ‘BB_LOGGED_IN_KEY’, ‘put your unique phrase here’ );

    define( ‘BB_NONCE_KEY’, ‘put your unique phrase here’ );

    /**#@-*/

    /**

    * bbPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $bb_table_prefix = ‘bb_’;

    /**

    * bbPress Localized Language, defaults to English.

    *

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

    * language must be installed to a directory called “my-languages” in the root

    * directory of bbPress. For example, install de.mo to “my-languages” and set

    * BB_LANG to ‘de’ to enable German language support.

    */

    define( ‘BB_LANG’, ” );

    ?>

    #77862

    You can try, but even if you did, I’m pretty sure I’d never see if there were blank lines or extra lines below and above, would I? That’s the bi**h about debugging this :/

    The only ticket on this even says blank lines are the cause: https://trac.bbpress.org/ticket/815

    #75386
    nedsferatu
    Member
    #76791
    nedsferatu
    Member

    Looks great awesome work! Thanks for your help with this, it makes managing bbpress so much easier.

    #77933

    If the user is visible in the bbPress forum panel, then it IS added in SQL. It’s possible your host is just hiding it somewhere you can’t see.

    #77860

    In WordPress that error is almost always caused by spaces or blank extra lines in your config file.

    http://www.hongkiat.com/blog/wordpress-error-warning-cannot-modify-header-information/

    The same is, generally, true of bbPress. Please read the link above to make sure that when we talk about spaces, we’re both talking about the same thing :)

    #76759
    hpguru
    Member

    No.

    #76816

    Hi anandasama,

    I followed the same order.

    Even I think that my user meta and cookie integration might have some problem, is there any way to check the same?

    Or can I do it again the cookie and user meta integration part?

    thanks

    #31471
    anandasama
    Member

    still in heavy development but I got the crucial stuff working.

    Once I got most functions and plugins working at a decent level I will make my own theme out of it.

    http://matsuri.moai.se

    #76815
    anandasama
    Member

    You need to integrate the user meta and the cookie integration. Seems like you made a mistake with both?

    Make sure you installed everything in this order:

    1. Clean DB (No old WP_ or bb_ tables. Clean it)

    2. Install WPMU

    3. Install Buddypress

    4. Install BbPress

    I used this guide and got it working:

    http://umwblogs.org/wiki/index.php/Integrating_WPMu%2C_BuddyPress%2C_and_bbPress

    #56574
    anandasama
    Member

    Ah but I use Buddypress and when users create groups in bp, automatical Subforums are created (Under the Parent forum id 1) in BbPress. But if I hide forum 1 (The parent), the other forum topics will still show in the latest discussions.

    And Its too painful to go and edit this afterwards. It must be automatic.

    I got some if Statement working with the forum loop. I excluded some subforums showing by using:

    `<?php if ( bb_forums() ) : ?>

    <?php while ( bb_forum() ) : global $forum; if ($forum->forum_parent != 0) continue; ?>

    <!– insert forum stuff to be looped –>

    <?php endwhile; ?>

    <?php endif; // bb_forums() ?>`

    but I cant get it working with topics.

    dressup9x
    Member

    Thanks Josh

    #76811

    In reply to: Latest Discussions

    Ok thks,

    i think the good uri is https://bbpress.org/plugins/topic/front-page-topics/

    thanks.

    #76698
    Josh Leuze
    Member

    @Ipstenu: I deactivated the Ajaxed Quotes plugin, didn’t seem to make any difference.

    I then deactivated all of the plugins, that didn’t change anything either.

    So I deactivated all the plugins and switched to the default theme. No changes. But when I reactivated those plugins, and switched to my custom theme, I am able to see those posts now, even when I am not logged in.

    The “+2 more” link still remains at the top, but the posts in the thread don’t seem change between the regular and all views. So it seems partially fixed, but the more link remaining makes think that more posts could get caught in this limbo.

    It almost seems like there was some caching involved and reactivating the theme and the plugins cleared this. But I don’t see that being the case with any of the plugins I am using. And it isn’t the brower’s cache, the problem is the same on multiple machines, any OS or browser.

    #76697
    Josh Leuze
    Member

    @johnhiler: I am using 1.1, the latest version of Akismet.

    I should also mention that I can’t replicate this. If I mark a post as spam, and then go in and mark that post as not spam, it shows back up just fine in the thread.

    It only appears to be happening when Akismet itself filters a post as spam.

    #76696
    Josh Leuze
    Member

    @chrishajer: I can sort of rescue a spam post. I don’t have any problem finding the spam posts in the admin panel, and marking them as “Not Spam”. They disappear from the spam posts and show up in the regular posts.

    But in the front end, they do not show up unless I am logged in as admin and click the “+2 More” link.

    I am using a custom theme, but it is built from Kakumei and should not be very functionally different from that. I switched back to the default theme, and everything functioned the same.

    #31469

    I registered a hosting space on http://www.netsons.com (it’s free). They offer a mysql database. I istalled wordpress and bbpress on the space, and worked. But the question is: when i installed bbpress…it asked me about a mysql url…i inserted netsons’s mysql url… it sayed ok.

    But when i register a new user on forum…the record is not in netsons’s mysql!!! the user is visible only in bbpress forum panel.

    So: why it asked me about a mysql URL if it don’t use it?

    i’m newbie from italy…sorry

    here is the site in question: http://www.waapsols.com

    Its running Buddypress.

    These are the steps i followed to integrate BB and BP… http://buddypress.org/forums/topic/bp-103-and-bbpress-which-version-plugins-cookies#post-20006

    WPMU, BP, and BB is working good. But I just can’t get the logins to work, I mean when I login into WPMU, I am not automatically logged into BBPress Forum.

    I am guessing thats the reason why in my BuddyPress, the forum is working fine, but who ever posts, there is no gravtar or name is seen :(

    Can someone help, what might have gone wrong.?

    #77905

    In reply to: How to delete a post ?

    No, bbPress 1.0.2 is released. 1.1 is being built.

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