Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 41,076 through 41,100 (of 64,515 total)
  • Author
    Search Results
  • #35784
    rvrzl
    Member

    I’ve successfully integrated BBPress and WordPress and have the roles setup and what not.

    However, now that it’s been successfully integrated, I can no longer get into the admin panel. Clicking “admin” just redirects me back to the main forums page.

    After checking on the permissions, I have a bb_capabilities row in my wp_usermeta which is correctly set to keymaster (a:1:{s:9:”keymaster”;b:1;}), so I’m not really sure what’s going on.

    There is no .htaccess file in my bbpress directly to redirect anything.

    #94500

    Will be trying to hammer out the topic/reply counts this week, as well as a very basic front end New Topic/New Reply form.

    That’s all it needs to be functioning in a skeletal capacity for initial proof of concept testing and iteration.

    I didn’t write a single line of code during WordCamp NYC; spent most of the time supporting BuddyPress questions with our two new core committers, Paul Gibbs and Boone Gorges.

    I leave again this Friday through Monday for the Google Summer of Code Mentor Summit, so this week is a short dev week.

    Any interest in doing a development chat in IRC next week?

    #35774
    tdarcy
    Member

    I am trying to install bbpress for my website and unfortunately it doesn’t seem to matter what I put in the boxes I get the following error(s). Now I am not trying to integrate it with WordPress just yet so it should be fairly straight forward (however it apparently is not). Any help and suggestions would be greatly appreciated. Oh, and I have tried disabling all my security features and that didn’t work either. Knowing my luck it is something stupid and it will work like a charm in two seconds but whatever it is, I’m not seeing an immediate solution to the problem.

    Here is the code:

    SQL ERROR!

    >>> Database: taylordarcy_com (mysql.taylordarcy.com)

    >>>>>> CREATE TABLE IF NOT EXISTS wp_7w6sfp_bb_forums (

    forum_id int(10) NOT NULL auto_increment,

    forum_name varchar(150) NOT NULL default ”,

    forum_slug varchar(255) NOT NULL default ”,

    forum_desc text NOT NULL,

    forum_parent int(10) NOT NULL default 0,

    forum_order int(10) NOT NULL default 0,

    topics bigint(20) NOT NULL default 0,

    posts bigint(20) NOT NULL default 0,

    PRIMARY KEY (forum_id),

    KEY forum_slug (forum_slug)

    ) DEFAULT CHARACTER SET ‘DB_CHARSET’ COLLATE ‘DB_COLLATE’;

    >>>>>> Unknown character set: ‘DB_CHARSET’

    SQL ERROR!

    >>> Database: taylordarcy_com (mysql.taylordarcy.com)

    >>>>>> CREATE TABLE IF NOT EXISTS wp_7w6sfp_bb_meta (

    meta_id bigint(20) NOT NULL auto_increment,

    object_type varchar(16) NOT NULL default ‘bb_option’,

    object_id bigint(20) NOT NULL default 0,

    meta_key varchar(255) default NULL,

    meta_value longtext,

    PRIMARY KEY (meta_id),

    KEY object_type__meta_key (object_type, meta_key),

    KEY object_type__object_id__meta_key (object_type, object_id, meta_key)

    ) DEFAULT CHARACTER SET ‘DB_CHARSET’ COLLATE ‘DB_COLLATE’;

    >>>>>> Unknown character set: ‘DB_CHARSET’

    SQL ERROR!

    >>> Database: taylordarcy_com (mysql.taylordarcy.com)

    >>>>>> CREATE TABLE IF NOT EXISTS wp_7w6sfp_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 ‘DB_CHARSET’ COLLATE ‘DB_COLLATE’;

    >>>>>> Unknown character set: ‘DB_CHARSET’

    SQL ERROR!

    >>> Database: taylordarcy_com (mysql.taylordarcy.com)

    >>>>>> CREATE TABLE IF NOT EXISTS wp_7w6sfp_bb_terms (

    term_id bigint(20) NOT NULL auto_increment,

    name varchar(55) NOT NULL default ”,

    slug varchar(200) NOT NULL default ”,

    term_group bigint(10) NOT NULL default 0,

    PRIMARY KEY (term_id),

    UNIQUE KEY slug (slug),

    KEY name (name)

    ) DEFAULT CHARACTER SET ‘DB_CHARSET’ COLLATE ‘DB_COLLATE’;

    >>>>>> Unknown character set: ‘DB_CHARSET’

    SQL ERROR!

    >>> Database: taylordarcy_com (mysql.taylordarcy.com)

    >>>>>> CREATE TABLE IF NOT EXISTS wp_7w6sfp_bb_term_relationships (

    object_id bigint(20) NOT NULL default 0,

    term_taxonomy_id bigint(20) NOT NULL default 0,

    user_id bigint(20) NOT NULL default 0,

    term_order int(11) NOT NULL default 0,

    PRIMARY KEY (object_id, term_taxonomy_id),

    KEY term_taxonomy_id (term_taxonomy_id)

    ) DEFAULT CHARACTER SET ‘DB_CHARSET’ COLLATE ‘DB_COLLATE’;

    >>>>>> Unknown character set: ‘DB_CHARSET’

    SQL ERROR!

    >>> Database: taylordarcy_com (mysql.taylordarcy.com)

    >>>>>> CREATE TABLE IF NOT EXISTS wp_7w6sfp_bb_term_taxonomy (

    term_taxonomy_id bigint(20) NOT NULL auto_increment,

    term_id bigint(20) NOT NULL default 0,

    taxonomy varchar(32) NOT NULL default ”,

    description longtext NOT NULL,

    parent bigint(20) NOT NULL default 0,

    count bigint(20) NOT NULL default 0,

    PRIMARY KEY (term_taxonomy_id),

    UNIQUE KEY term_id_taxonomy (term_id, taxonomy),

    KEY taxonomy (taxonomy)

    ) DEFAULT CHARACTER SET ‘DB_CHARSET’ COLLATE ‘DB_COLLATE’;

    >>>>>> Unknown character set: ‘DB_CHARSET’

    SQL ERROR!

    >>> Database: taylordarcy_com (mysql.taylordarcy.com)

    >>>>>> CREATE TABLE IF NOT EXISTS wp_7w6sfp_bb_topics (

    topic_id bigint(20) NOT NULL auto_increment,

    topic_title varchar(100) NOT NULL default ”,

    topic_slug varchar(255) NOT NULL default ”,

    topic_poster bigint(20) NOT NULL default 0,

    topic_poster_name varchar(40) NOT NULL default ‘Anonymous’,

    topic_last_poster bigint(20) NOT NULL default 0,

    topic_last_poster_name varchar(40) NOT NULL default ”,

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

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

    forum_id int(10) NOT NULL default 1,

    topic_status tinyint(1) NOT NULL default 0,

    topic_open tinyint(1) NOT NULL default 1,

    topic_last_post_id bigint(20) NOT NULL default 1,

    topic_sticky tinyint(1) NOT NULL default 0,

    topic_posts bigint(20) NOT NULL default 0,

    tag_count bigint(20) NOT NULL default 0,

    PRIMARY KEY (topic_id),

    KEY topic_slug (topic_slug),

    KEY forum_time (forum_id, topic_time),

    KEY user_start_time (topic_poster, topic_start_time),

    KEY stickies (topic_status, topic_sticky, topic_time)

    ) DEFAULT CHARACTER SET ‘DB_CHARSET’ COLLATE ‘DB_COLLATE’;

    >>>>>> Unknown character set: ‘DB_CHARSET’

    Database installation failed!!!

    #94499
    moshthepitt
    Member

    Wow, looking good. Just started testing – thanks a mil JJJ, and everyone else!

    #76460
    Rich Pedley
    Member
    #94498
    Rootside
    Member

    Yes – it was version (or “changeset”) 2564 when I posted the above. Now it’s 2571.

    #35765
    scotticus
    Member

    Hi, it’s day 1 for this newbie, so go easy on me if I’ve overlooked something shockingly obvious.

    I’ve installed bbpress, installation was painless.

    I’ve setup some forums and got some users registered, also painless.

    Now, how can I control which users can post in which forums? I have one particular forum which I need to remain visible to all users, even those who aren’t logged in, but only admins should be able to post new topics to said forum. Can it be done?

    Any advice appreciated…

    Scott

    #35754

    Topic: Customise theme

    in forum Themes
    Rixos
    Member

    Hello, I have just installed bbpress today, I currently still have the standard kakumei theme installed.

    I would like to add the custom header I use on my website to my forums aswell.

    Can someone please explain exactly how I can do this?

    Thanks in advance!

    #76459
    Seth Chong
    Member

    15th October had come and gone… any news?

    #96578
    zaerl
    Participant
    #101678
    zaerl
    Participant
    #35751
    sunil gupta
    Member

    Hey.

    how to solve this problum

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwforumbb-settings.php on line 186

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwforumbb-includesbackpressfunctions.wp-object-cache.php on line 108

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwforumbb-includesbackpresspomomo.php on line 171

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwforumbb-includesfunctions.bb-l10n.php on line 484

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwforumbb-includesbackpressclass.wp-taxonomy.php on line 581

    please reply…

    Thanks

    you need to tell the prefix whether they are in the same database or not. Better keep it in the same database.

    You can follow instructions from here – http://blog.ashfame.com/2009/07/integrate-bbpress-10-with-wordpress-28/

    you need to tell the prefix whether they are in the same database or not. Better keep it in the same database.

    You can follow instructions from here – http://blog.ashfame.com/2009/07/integrate-bbpress-10-with-wordpress-28/

    Yeah I wrote that tutorial.

    Someone left the instructions for TwentyTen, search in the forums, you will be able to find it

    Yeah I wrote that tutorial.

    Someone left the instructions for TwentyTen, search in the forums, you will be able to find it

    #94497
    Rich Pedley
    Member

    that version is already there, have you followed the link I provided to download : https://trac.bbpress.org/browser/branches/plugin ?

    heartarget
    Member

    Hello everyone,

    I have created a new database for bbpress and entered that into

    the fields when required during bbpress installation.

    Now I am trying to do the WP integration by entering ‘wp_’ in the user database table prefix field… I get kicked out and can’t login again and receive the following alert: User doesn’t exist.

    I have read that I could use the same database as the one used by the WP installation… I have tried to do that in one of the installations but it didn’t go through.

    I am thinking that the ‘wp_’ thing mentioned above would work only if I was using the same database between bbpress and wordpress, is that true?

    Thank you very much,

    #96352
    master5o1
    Participant

    moar feedback desired :)

    #101452
    master5o1
    Participant

    moar feedback desired :)

    #94496
    Rootside
    Member

    JJJ on page 1 of this thread: “Looking more like October 17 now, to be exact.” – in response to when “a version for alpha testing” could be ready. Presumably something including the features mentioned in the very first post of this thread.

    I think everybody is looking forward to a version that includes some rudimentary front-end templates, so people can roughly see how it might work and look, and many people were expecting this to be ready around the 15th, or “to be exact”, on the 17th.

    #35742
    DKB
    Participant

    Hi, i use the latest version of bbPress (bbPress 1.1-alpha-2539.).

    I have a problem with Javascript if i work with Chrome 6. It doesnt work. For instance with deselecting in profile/favourites New Post Notification.

    Does anyone have a clue?

    Thanks in advance.

    #94495
    citizenkeith
    Participant

    bbpress wordpress plugin delayed??

    I don’t think anybody has ever said the plugin would be released on October 15 (formerly September 15). We’re looking at a soft release of an early testable version (there’s probably a better word for that, maybe pre-alpha? I don’t know, I’m not a coder).

    EDIT: JJJ said this in the original thread:

    https://bbpress.org/forums/topic/bbpress-plugin-september-15

    Quick update – Aiming for October 15 for the aforementioned super-pre-alpha.

    So, super-pre-alpha it is! :D

    We won’t see a usable version for some time. But the community can start testing and reporting bugs now.

    #94494
    Rich Pedley
    Member

    no, whatever gave you that impression:

    download from: https://trac.bbpress.org/browser/branches/plugin

    which has a zip archive link at the bottom.

    it’s in early stages of testing.

    #94493
    intimez
    Participant

    bbpress wordpress plugin delayed??

Viewing 25 results - 41,076 through 41,100 (of 64,515 total)
Skip to toolbar