Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 18,976 through 19,000 (of 32,499 total)
  • Author
    Search Results
  • #104711
    Kasparas
    Participant

    Thanks for fast answer Ashfame. I see that bbpress community became more active since last year beginning i think… :)

    #99610

    1.0.3 is the best right now. You can do a lot more with it. Also you can switch over to plugins when they are ready with a upgrade script and at that time, I will be ready with a downgrade script too ;)

    #104710

    1.0.3 is the best right now. You can do a lot more with it. Also you can switch over to plugins when they are ready with a upgrade script and at that time, I will be ready with a downgrade script too ;)

    #99511

    Put these two lines in bb-config.php (located in bbPress root) to make bbPress use WordPress user tables.

    $bb->custom_user_table = 'wp_users';
    $bb->custom_user_meta_table = 'wp_usermeta';

    And similarly you can make bbPress to use another bbPress user tables.

    $bb->custom_user_table = 'bb_users';
    $bb->custom_user_meta_table = 'bb_usermeta';

    All installations should be in the same database for this to work

    #104611

    Put these two lines in bb-config.php (located in bbPress root) to make bbPress use WordPress user tables.

    $bb->custom_user_table = 'wp_users';
    $bb->custom_user_meta_table = 'wp_usermeta';

    And similarly you can make bbPress to use another bbPress user tables.

    $bb->custom_user_table = 'bb_users';
    $bb->custom_user_meta_table = 'bb_usermeta';

    All installations should be in the same database for this to work

    #37607
    Kasparas
    Participant

    I used bbpress quite a long time ago and just want to ask what is the best bbpress version ? Is it trunk, 1.0.3 or plugin plugin (wathing from here http://trac.bbpress.org/browser#branches)

    Thanks for answers ! long live bbpres ! :)

    #99595
    Giowizzy
    Member

    Perfecto Zaerl,

    Now if you look at the forum “plainzine.com/forum” what is the code that call the site name? You will see 2 of them actually right now.

    Forgot to mention previously I’m using “kakumei blue” theme

    Again thanks for your help.

    Gio-

    #104695
    Giowizzy
    Member

    Perfecto Zaerl,

    Now if you look at the forum “plainzine.com/forum” what is the code that call the site name? You will see 2 of them actually right now.

    Forgot to mention previously I’m using “kakumei blue” theme

    Again thanks for your help.

    Gio-

    #99545
    ajz
    Member

    I’m not pro at this but include your css file for your wordpress site on your forum site, then you just copy the code for you bar and paste it into the forum header.

    #104645
    ajz
    Member

    I’m not pro at this but include your css file for your wordpress site on your forum site, then you just copy the code for you bar and paste it into the forum header.

    #99577

    o_0

    Yes, this is important to figure out. If there is a backdoor, world is again at risk. Lol, I have a weird mood right now :D

    #104677

    o_0

    Yes, this is important to figure out. If there is a backdoor, world is again at risk. Lol, I have a weird mood right now :D

    #99568
    mwdewitt
    Member

    I followed the directions to a “T” on your website. The install went fine until I wanted to finish everything up. Then it spits out this error message:

    SQL ERROR!

    >>> Database: acidhouse (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!

    I checked both the wp-config and bb-config file and the keys match up perfectly. I do not know what I am doing wrong here!

    #104668
    mwdewitt
    Member

    I followed the directions to a “T” on your website. The install went fine until I wanted to finish everything up. Then it spits out this error message:

    SQL ERROR!

    >>> Database: acidhouse (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!

    I checked both the wp-config and bb-config file and the keys match up perfectly. I do not know what I am doing wrong here!

    #99548
    [removed]
    Participant

    So apparently you can change $obj->request, which is actually the entire parsed query ready to go. I just split it at the WHERE and added some stuff in there before returning the entire object.

    Works like a charm.

    #104648
    [removed]
    Participant

    So apparently you can change $obj->request, which is actually the entire parsed query ready to go. I just split it at the WHERE and added some stuff in there before returning the entire object.

    Works like a charm.

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

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

    #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

    #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

Viewing 25 results - 18,976 through 19,000 (of 32,499 total)
Skip to toolbar