Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 39,051 through 39,075 (of 64,532 total)
  • Author
    Search Results
  • #104670
    mwdewitt
    Member

    Nothing is zipped. It is all unzipped into a directory called “acidhouse” and ready to rock. Or maybe I am not understanding what you are saying. But at least I can get to the forum now, along with simultaneously being signed into my WordPress Admin and my bbPress Admin. The only difference is, this time it lets me see my forum where as before it would give me an error. So there is a little bit of progress, but I would still like to know how to get rid of the SQL errors.

    #99570
    mwdewitt
    Member

    Nothing is zipped. It is all unzipped into a directory called “acidhouse” and ready to rock. Or maybe I am not understanding what you are saying. But at least I can get to the forum now, along with simultaneously being signed into my WordPress Admin and my bbPress Admin. The only difference is, this time it lets me see my forum where as before it would give me an error. So there is a little bit of progress, but I would still like to know how to get rid of the SQL errors.

    #104659

    No! You can hack your way out by deep integration though.

    Read this tutorial I wrote

    But also read the advantages disadvantages of deep integration.

    #99559

    No! You can hack your way out by deep integration though.

    Read this tutorial I wrote

    But also read the advantages disadvantages of deep integration.

    #104676

    Ask your webhost to provide you with access logs of your site, and see where those _POST requests came from. You can also try updating to 1.0.3 which is tagged in the repository but not available for download via .zip quite yet.

    https://trac.bbpress.org/browser/tags/1.0.3/

    #99576

    Ask your webhost to provide you with access logs of your site, and see where those _POST requests came from. You can also try updating to 1.0.3 which is tagged in the repository but not available for download via .zip quite yet.

    https://trac.bbpress.org/browser/tags/1.0.3/

    #37587
    citizenkeith
    Participant

    I maintain a website that has an install of bbPress 1.0.2. There haven’t really been any posts in about a year (just one or two updates from moderators).

    Today I viewed the forum to see hundreds of Anonymous spam posts.

    This confuses me, since I don’t have an Anonymous Posting plugin installed or enabled. Which makes me think somebody may have found a back door. I would like to close that door, but I have no idea where to start.

    Thoughts?

    #99342
    [removed]
    Participant

    Why aren’t we able to add comments to plugins anymore?

    #104442
    [removed]
    Participant

    Why aren’t we able to add comments to plugins anymore?

    #37577
    Carl_bbDood
    Member

    basically what I’m asking is can I upload a WP theme to bbpress the normal way as I always have done using WP?

    Thanks all!

    Carl.

    #95001
    selise
    Participant

    “Does Twentyten somehow “create” the /forums/forum/ and /forums/topic/topic-name/ pages when it’s initialized?”

    mralexweber – you may need to uncheck the “Include base?” option at the bottom of the admin -> settings -> forums page. anyway, that’s what i did. that and making sure my forum page slug matches the “Forum slug” at forums settings seems to have done the trick for me.

    disclaimer: i’m just a general user, not a wp or bbp expert.

    #104662

    In reply to: is this not a plugin?

    zaerl
    Participant

    into plugins folder

    If you aren’t using the experimental plugin version which can be downloaded only by the SVN repository THEN you aren’t actually using a WordPress plugin.

    bbPress is a standalone software.

    #99562

    In reply to: is this not a plugin?

    zaerl
    Participant

    into plugins folder

    If you aren’t using the experimental plugin version which can be downloaded only by the SVN repository THEN you aren’t actually using a WordPress plugin.

    bbPress is a standalone software.

    #95000
    ch8rt
    Member

    Actually, that is where I’ve been looking, the trouble is that it is feed a query before being called. Like…

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

    The above example doesn’t work when I try it on another page (specifically my hacked up Buddypress Profile page).

    #94999
    ch8rt
    Member

    I’ve you tried just resaving your permalinks? I think that has solved some of those issues.

    Thanks for the suggestion above, I’ll give it a try.

    #104667
    #99567
    #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

    #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

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

    #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

    #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

    #104657

    In reply to: google site summary

    intimez
    Participant

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

    #99557

    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!

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