Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 39,051 through 39,075 (of 64,515 total)
  • Author
    Search Results
  • #99520

    Thing is, you configure role mapping before changing table so that roles of members from the new user table can have proper bbPress roles.

    So WP admin will be your bbPress keymaster

    #104620

    Thing is, you configure role mapping before changing table so that roles of members from the new user table can have proper bbPress roles.

    So WP admin will be your bbPress keymaster

    #94998
    mralexweber
    Participant

    Okay, I hate to be ‘that guy’ but I’ve gotta ask…

    I created forums through the admin interface, created a page (named “forum”) and set the page template to bbPress index. So far, so good. The page loads and I can see the forums I created.

    However, when I click on one of the forums, for instance, “General Discussion”, I get a 404.

    I’m using the DynamiX theme and I have added the various page templates, loop templates, css, etc. from the plugin. I tested on a different subdomain and it was working, but now it’s not.

    Does Twentyten somehow “create” the /forums/forum/ and /forums/topic/topic-name/ pages when it’s initialized? I looked at the functions.php included and didn’t see anything like this going on.

    I have also made sure to network activate the plugin, it was previously only activated on this site. Could that be the source of the problem?

    Thanks again, everyone.

    #99566
    mwdewitt
    Member

    Okay, I figured out I had to go to my wp-config file where I installed WordPress to find all that stuff. Okay, now I have a new problem. Now that I have bbPress installed, it is giving me this error:

    SQL ERROR!

    >>> Database: acidhouse-forums (localhost)

    >>>>>> CREATE TABLE IF NOT EXISTS bb_posts

    (

    post_id bigint(20) NOT NULL auto_increment,

    forum_id int(10) NOT NULL default 1,

    topic_id bigint(20) NOT NULL default 1,

    poster_id int(10) NOT NULL default 0,

    post_text text NOT NULL,

    post_time datetime NOT NULL default ‘0000-00-00 00:00:00’,

    poster_ip varchar(15) NOT NULL default ”,

    post_status tinyint(1) NOT NULL default 0,

    post_position bigint(20) NOT NULL default 0,

    PRIMARY KEY (post_id),

    KEY topic_time (topic_id, post_time),

    KEY poster_time (poster_id, post_time),

    KEY post_time (post_time),

    FULLTEXT KEY post_text (post_text)

    ) TYPE = MYISAM DEFAULT CHARACTER SET ‘utf8’;

    >>>>>> You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘TYPE = MYISAM DEFAULT CHARACTER SET ‘utf8” at line 16

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_users DROP PRIMARY KEY;

    >>>>>> Incorrect table definition; there can be only one auto column and it must be defined as a key

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_users ADD PRIMARY KEY (ID);

    >>>>>> Multiple primary key defined

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_usermeta DROP PRIMARY KEY;

    >>>>>> Incorrect table definition; there can be only one auto column and it must be defined as a key

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_usermeta ADD PRIMARY KEY (umeta_id);

    >>>>>> Multiple primary key defined

    Key master email not sent!

    And when I try to go to bb-login it gives me a 404 error, saying that the page was not found. Okay, what did I do wrong?

    I am running…

    Windows XP SP3

    Apache 2.2.17

    PHP 5.3.5

    MySQL 5.5.8

    #104666
    mwdewitt
    Member

    Okay, I figured out I had to go to my wp-config file where I installed WordPress to find all that stuff. Okay, now I have a new problem. Now that I have bbPress installed, it is giving me this error:

    SQL ERROR!

    >>> Database: acidhouse-forums (localhost)

    >>>>>> CREATE TABLE IF NOT EXISTS bb_posts

    (

    post_id bigint(20) NOT NULL auto_increment,

    forum_id int(10) NOT NULL default 1,

    topic_id bigint(20) NOT NULL default 1,

    poster_id int(10) NOT NULL default 0,

    post_text text NOT NULL,

    post_time datetime NOT NULL default ‘0000-00-00 00:00:00’,

    poster_ip varchar(15) NOT NULL default ”,

    post_status tinyint(1) NOT NULL default 0,

    post_position bigint(20) NOT NULL default 0,

    PRIMARY KEY (post_id),

    KEY topic_time (topic_id, post_time),

    KEY poster_time (poster_id, post_time),

    KEY post_time (post_time),

    FULLTEXT KEY post_text (post_text)

    ) TYPE = MYISAM DEFAULT CHARACTER SET ‘utf8’;

    >>>>>> You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘TYPE = MYISAM DEFAULT CHARACTER SET ‘utf8” at line 16

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_users DROP PRIMARY KEY;

    >>>>>> Incorrect table definition; there can be only one auto column and it must be defined as a key

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_users ADD PRIMARY KEY (ID);

    >>>>>> Multiple primary key defined

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_usermeta DROP PRIMARY KEY;

    >>>>>> Incorrect table definition; there can be only one auto column and it must be defined as a key

    SQL ERROR!

    >>> Database: acidhouse (localhost)

    >>>>>> ALTER TABLE wp_usermeta ADD PRIMARY KEY (umeta_id);

    >>>>>> Multiple primary key defined

    Key master email not sent!

    And when I try to go to bb-login it gives me a 404 error, saying that the page was not found. Okay, what did I do wrong?

    I am running…

    Windows XP SP3

    Apache 2.2.17

    PHP 5.3.5

    MySQL 5.5.8

    #99557

    In reply to: google site summary

    intimez
    Participant

    SPAM post? Unless somehow your site is bbpress related. ;)

    #104657

    In reply to: google site summary

    intimez
    Participant

    SPAM post? Unless somehow your site is bbpress related. ;)

    #37583
    mwdewitt
    Member

    I am new to this and I am trying to integrate WordPress and bbPress, but I am having a few issues. How do I find out what the WordPress “auth” cookie key is, along with the WordPress “secure auth” cookie key, and WordPress “logged in” cookie key, including all of the “cookie salt.” Also, what should the user database table prefix be (right now it is wp_) and what is the WordPress MU primary blog ID? If someone could explain all of this to me, I would greatly appreciate it. Thank you in advance!

    #94997
    mralexweber
    Participant

    @ch8rt, I’m just learning this plugin, but I would suggest you look at loop-bbp_topics.php (in the plugin folder structure it’s in plugin/bbp-themes/bbp-twentyten/ ). Around line 16 is where the table gets created. It’ll need a little custom mojo to get it working totally right, but let us know how it goes!

    #94996
    mralexweber
    Participant

    Hey JJJ/everyone!

    Just got the plugin working on our server and for the most part, everything works. Exciting!

    However, something that puzzled me was the “profiles”. My guess is that this version they are going to be separate pages from BuddyPress profile pages (yes, we’re also using BP) and later be merged when BP provides new profile functionality?

    In the mean time, it looks like we’ll have to overload the bbp_author_link function… that, or hack out every instance of it, which I would prefer not to do.

    If anyone could comment or guide me in the right direction, I’d be very grateful. Thanks for the great work everyone!

    -mrA

    #37580
    Lange
    Member

    As of today my 2 month old bbPress installation is now showing posts in the wrong order. The most recently added or edited post shows at the top of the thread, while all the other posts are in the correct chronological order beneath.

    #37578
    nickellison
    Member

    Hi. I have uploaded via ftp into plugins folder but it doesn’t show up. Your instructions indicate to go to the url of the installation. Is bbpress for a sole wordpress site usage not just a plugin for forum within a site?

    #99487
    Cordelia0704
    Member

    I have a password protected directory on a sub domain. wordpress is the only thing installed on it. I want the forums to fall under the same password protection so that my members don’t need to use 2 logins to use what *should* be a functional part of the site their used to. so I tried uploading it into a directory called bbpress on that sub domain with wordpress installed.

    I guess my post was a little confusing, but trust me, so is my server set up :P

    #104587
    Cordelia0704
    Member

    I have a password protected directory on a sub domain. wordpress is the only thing installed on it. I want the forums to fall under the same password protection so that my members don’t need to use 2 logins to use what *should* be a functional part of the site their used to. so I tried uploading it into a directory called bbpress on that sub domain with wordpress installed.

    I guess my post was a little confusing, but trust me, so is my server set up :P

    #94995
    ch8rt
    Member

    Any ideas on pulling users favourite/created/subscribed topics somewhere other than the users page?

    This is the code for created from the users page which shows 0 results elsewhere, presumably because it doesn’t know what user I want.

    <?php bbp_set_query_name( 'bbp_user_profile_topics_created' ); ?>

    <?php if ( bbp_get_user_topics_started() ) :

    get_template_part( 'loop', 'bbp_topics' );

    else : ?>

    <p><?php bbp_is_user_home() ? _e( 'You have not created any topics.', 'bbpress' ) : _e( 'This user has not created any topics.', 'bbpress' ); ?></p>

    <?php endif; ?>

    <?php bbp_reset_query_name(); ?>

    I’ve had success going the custom post types route with…

    <?php query_posts( 'post_type=bbp_topic&posts_per_page=5&author_name=' . $username ); ?>

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    " title="<?php the_title(); ?>"><?php the_title(); ?>

    <?php endif; ?>

    Which works, if all I want is the title, but not the correct way I’m guessing :)

    #99486
    terraling
    Participant

    I just joined the forums to be able to ask about my failed install, but I think I see your problem having just gone through the install myself (albeit unsuccessfully).

    You say you uploaded the files to your wordpress directory.

    You’re not supposed to.

    If your site is example.com and you want bbpress to live at example.com/forums/ then use your ftp program to create a directory called forums in your root directory (ie at the *same level* or alongside your wordpress directory, not *in* it), and copy all of the bbpress files into that directory.

    Then in your browser visit example.com/forums/ and an installation wizard should start up (not that it does for me).

    #104586
    terraling
    Participant

    I just joined the forums to be able to ask about my failed install, but I think I see your problem having just gone through the install myself (albeit unsuccessfully).

    You say you uploaded the files to your wordpress directory.

    You’re not supposed to.

    If your site is example.com and you want bbpress to live at example.com/forums/ then use your ftp program to create a directory called forums in your root directory (ie at the *same level* or alongside your wordpress directory, not *in* it), and copy all of the bbpress files into that directory.

    Then in your browser visit example.com/forums/ and an installation wizard should start up (not that it does for me).

    #99496
    Ben L.
    Member

    https://bbpress.org/plugins/topic/nospamuser/ :)

    bbPress doesn’t store IP addresses of users when they register. The Project Honey Pot plugin will block the spammers from every page on your forum, including the login page, so there’s no reason to worry.

    #104596
    Ben L.
    Member

    https://bbpress.org/plugins/topic/nospamuser/ :)

    bbPress doesn’t store IP addresses of users when they register. The Project Honey Pot plugin will block the spammers from every page on your forum, including the login page, so there’s no reason to worry.

    #99552

    In reply to: emoticons question

    Ben L.
    Member

    I’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.

    #104652

    In reply to: emoticons question

    Ben L.
    Member

    I’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.

    #99518
    Psyber
    Member

    I am experiencing the same issue. Everything was integrated just fine until I assigned roles in the bbPress backend and added wp_ as the table prefix, now I can’t login.

    #104618
    Psyber
    Member

    I am experiencing the same issue. Everything was integrated just fine until I assigned roles in the bbPress backend and added wp_ as the table prefix, now I can’t login.

    #99494
    Ben L.
    Member

    If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.

    #104594
    Ben L.
    Member

    If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.

Viewing 25 results - 39,051 through 39,075 (of 64,515 total)
Skip to toolbar