Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 19,826 through 19,850 (of 32,518 total)
  • Author
    Search Results
  • #94502

    Wednesdays @ 2100 GMT

    irc.freenode.net

    #bbpress

    I just committed a first pass at New Topic and Reply forms. They need escaping and a security sweep, but appear to work well enough so far.

    I’ve also opened a few tickets for a few things that I haven’t started, for those that are interested in getting involved and dirty with some code.

    twlack
    Participant

    I want to change the label over the new topic post form from:

    “New Topic in this Forum”

    to

    “New Topic in ‘Forum Name'”

    I see the change needs to be made in file /bb-includes/functions.bb-template.php on line 276:

    $h2 = __( 'New Topic in this Forum' );

    I tried this:

    $h2 = __( 'New Topic '.forum_name() );

    And the topic name does show on the page but it is outside of the <h2></h2> tags. Why is that?

    #94501
    Rich Pedley
    Member

    Please confirm the date rather than saying next week ;)

    I’d be interested in it.

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

    #85823

    Just installed the theme.

    I think it is missing the gravatars :(

    Regards

    #101452
    master5o1
    Participant

    moar feedback desired :)

    #96352
    master5o1
    Participant

    moar feedback desired :)

    #85821
    norby500
    Member

    okay i fixed the above problem now :) , i properly looked through the header and made the right adjustments!

    i was wondering if anybody had a fix for when somebody searches for threads and it displays the thread in the results, if the name is too long it breaks the layout and makes it look terrible, any solutions?

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

    #101280
    zaerl
    Participant

    Zaerl, figured it out. I was using my user password and login instead of my admin login. :)

    It happens buddy. Have a nice day.

    #96180
    zaerl
    Participant

    Zaerl, figured it out. I was using my user password and login instead of my admin login. :)

    It happens buddy. Have a nice day.

    #101279
    jetskiron
    Member

    Zaerl, figured it out. I was using my user password and login instead of my admin login. :)

    #96179
    jetskiron
    Member

    Zaerl, figured it out. I was using my user password and login instead of my admin login. :)

    #101550
    zaerl
    Participant

    That’s where you are wrong!

    I am not Mr Kento Mr. The admin of the site you posted have installed a plugin that counts topic views. The plugin in object is bb-topic-views created by _ck_ which is freely available.

    Perhaps the fact that you cannot find the bit that tags the number of views on to the topic title – makes my point.

    Again bbPress doesn’t collect individual topic views nor it displays them. So it’s impossible to find that function in the code.

    This is the definition of spaghetti code.

    Have a nice day.

    #96450
    zaerl
    Participant

    That’s where you are wrong!

    I am not Mr Kento Mr. The admin of the site you posted have installed a plugin that counts topic views. The plugin in object is bb-topic-views created by _ck_ which is freely available.

    Perhaps the fact that you cannot find the bit that tags the number of views on to the topic title – makes my point.

    Again bbPress doesn’t collect individual topic views nor it displays them. So it’s impossible to find that function in the code.

    This is the definition of spaghetti code.

    Have a nice day.

    #101549
    KentonMr
    Member

    That’s where you are wrong!

    In the case of views (the number of times a topic is viewed), and yes I DO mean views and NOT voices (the number of different contributors to a topic)

    look here for an example http://www.steamsheds.co.uk/bbpress/

    On the subject of spaghetti code:

    Perhaps the fact that you cannot find the bit that tags the number of views on to the topic title – makes my point.

    #96449
    KentonMr
    Member

    That’s where you are wrong!

    In the case of views (the number of times a topic is viewed), and yes I DO mean views and NOT voices (the number of different contributors to a topic)

    look here for an example http://www.steamsheds.co.uk/bbpress/

    On the subject of spaghetti code:

    Perhaps the fact that you cannot find the bit that tags the number of views on to the topic title – makes my point.

    #94484
    Rich Pedley
    Member

    well I’ll try. ;)

    #101536
    kiddbin
    Member

    Wholesale high quality fashion jewelry, Welcome


    wholesale tiffany

    wholesale Pandora

    Friendship jewelry wholesale

    #96436
    kiddbin
    Member

    Wholesale high quality fashion jewelry, Welcome


    wholesale tiffany

    wholesale Pandora

    Friendship jewelry wholesale

    #101218
    kiddbin
    Member

    WordPress and phpbb so people can use their account from one, with the other. Say I used WordPress with phpbb, and then used wp-united to link the two. One day the wp-united team ceases support, and their latest version is incompatible with the new phpbb/WordPress. Now what happens to the huge install base I’ve developed? Do new users now have to register twice? Is my database going to be completely screwed up? bbPress eliminates this problem by having seemless integration with WordPress, but it just shows an example of how plugins can be both a good and bad thing, and how some features (like poll creation) need to be made a part of the main software despite, ‘less code being more’.

    Friendship jewelry wholesale

    And lastly, arguably the number one issue preventing me from using bbPress, is the state of bbPress itself; the development of this software is up in the air with there being two completely different places to discuss it’s progress (this being one of them), and the other claiming talks of turning bbPress into a BuddyPress plugin. So the people new to bbPress, such as myself, don’t know what to do.wholesale tiffany Should we install the software now? Or wait until it’s a plugin? If we install now and they change it to a plugin, what happens to the standalone installations? Do they get screwed? Are they forced to install BuddyPress and switch everything over? Now I’m only human. I have no problem admitting when I’m wrong, I make mistakes. But even if not all my facts are straightwholesale Pandora

    #96118
    kiddbin
    Member

    WordPress and phpbb so people can use their account from one, with the other. Say I used WordPress with phpbb, and then used wp-united to link the two. One day the wp-united team ceases support, and their latest version is incompatible with the new phpbb/WordPress. Now what happens to the huge install base I’ve developed? Do new users now have to register twice? Is my database going to be completely screwed up? bbPress eliminates this problem by having seemless integration with WordPress, but it just shows an example of how plugins can be both a good and bad thing, and how some features (like poll creation) need to be made a part of the main software despite, ‘less code being more’.

    Friendship jewelry wholesale

    And lastly, arguably the number one issue preventing me from using bbPress, is the state of bbPress itself; the development of this software is up in the air with there being two completely different places to discuss it’s progress (this being one of them), and the other claiming talks of turning bbPress into a BuddyPress plugin. So the people new to bbPress, such as myself, don’t know what to do.wholesale tiffany Should we install the software now? Or wait until it’s a plugin? If we install now and they change it to a plugin, what happens to the standalone installations? Do they get screwed? Are they forced to install BuddyPress and switch everything over? Now I’m only human. I have no problem admitting when I’m wrong, I make mistakes. But even if not all my facts are straightwholesale Pandora

    #94479

    From what I can gather, I suppose this means there won’t be any bbpressplugin-as-BuddyPress-component testing until some later stage

    i would assume bp1.3. though tempting to see what it takes now to get the new bbp coexisting. :P

    #54448

    In reply to: Add nofollow to links

    Alex
    Participant

    This is driving me crazy. I cannot get any of the target=”_blank” or “nofollow” plugins to work. I’m using the default kakumei theme with the latest WordPress installation. Has the plugin code changed?

Viewing 25 results - 19,826 through 19,850 (of 32,518 total)
Skip to toolbar