Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 62,026 through 62,050 (of 64,427 total)
  • Author
    Search Results
  • #55635

    In reply to: What’s integration?

    fel64
    Member

    An example: I have WP on http://www.loinhead.net/ and bbPress on http://forums.loinhead.net/. It works without problems for me and was very little work to set up.

    You should certainly understand the integration process before installing as there are several key things you have to do differently – your config.php configuration will be very different, for example. If you have already installed bbPress then I think you will have to get rid of it and install it again, but integrating this time.

    If you need help at any specific part of the process, feel free to ask here. :)

    Also in mathematics integration is the opposite of differentiation.

    #55455
    fel64
    Member

    The easiest way to add tags with spaces is to post the topic then add tags one at a time in the top right-hand-corner of the thread (next to the post title), which are not space delimited (must be added one at a time though!).

    No plugins for any of those as far as I know. BBPress is great but perhaps a solution with (currently) more features and plugins like phpBB is for you.

    #55726

    In reply to: More “Main Themes”

    fel64
    Member

    That’s not a big problem, it can be done with a patch: https://bbpress.org/forums/topic/698?replies=40

    Hopefully this will be in a major release soon. :)

    #1578
    archasek
    Member

    hi.

    everything works well but i just cant add header from wordpress. i add to my bbpress config:

    require_once( ‘../wp-blog-header.php’ )

    my directories look like this:

    /wordpress – here is the wordpress

    /wordpress/forum – here is the bbpress

    whats wrong :)?

    and i want to remove ‘views part’ .

    #55687

    In reply to: Plugin: Latest Replies

    bbolman
    Participant
    #55298
    bbolman
    Participant
    #55454

    In reply to: Ajax libs used…

    c00l2sv
    Member

    I wasn’t asking to remove the whole ajax staff.

    I was asking to reduce it. Once we need only ajax http requests feature, why we should use the whole lib?

    Can’t we just write a function for that?

    It would be also great to had the possibility of including or not including any ajax libs in forums API, those already predefined and distributed with the bbPress or WordPress?!

    Still unresolved…..

    #1579
    c00l2sv
    Member

    You can get the file at: http://e-stas.net/files/fc.php/1

    The version I’ve tranlated: 0.81

    I will also support this translation once bbPress will be upgraded.

    Thank you guys for a wonderfull bbs.

    #55286
    Sam Bauers
    Participant

    I’ve hacked together a first draft of “HTTP authentication for bbPress” using the LDAP authentication plugin as a model.

    This is completely untested, but the basic premise is that you set up HTTP authentication on the entire bbPress install. The plugin handles the rest. You will need to install and turn on the plugin before setting up HTTP_AUTH though.

    Download from here.

    #55697
    drmike
    Member

    Do a search for ‘strike’ as we discussed the method to add in extra tags a few weeks ago.

    #1569
    boomanfloral
    Member

    Hi,

    I’m new to bbpress, and I’m trying to install it. I already use wordpress. There are lots of posts that talk about integration, but I’m not sure what ‘integration’ really means.

    Is there a site where I can look and see an example of ‘integration’? What are the benefits? How do a BLOG and FORUM integrate? Thank you! :)

    -daniel

    #55066
    ptolemycouk
    Member

    This fix didn’t work for me. Instead of getting the “1” in the textbox I was getting before, now I get just a 1. I have tried removing it, changing to 0, all, but to no avail.

    I’m the keymaster! It makes no sense that the keymaster can get bozoed.. Oughtn’t this be disabled?

    I was able to remove it only by going into the database and manually altering isBozo to 0 after installing this fix.

    #54361
    ghoulash
    Member

    ISSUE NOW RESOLVED. I have reinstalled bbPress, this time using only a pure text editor (TextWrangler) and a different FTP client. Before I was using Dreamweaver as my interface, and you would think, after years of web work and experience with DW’s thug-like behavior with relative paths, that I would have known better.

    By the way, upon reinstalling without using DW, I did not have the initial reverse-slash issue. In other words, I am not having to use the path-to-url plugin, with or without its subsequent tweak.

    By the way 2: I know this would be a “duh” comment for many, but just in case it helps someone avoid the problems I had: When running bb-admin/install.php, in the field where it calls for your web site, do not enter a trailing slash. I tend to add one out of habit, and I think that was the cause of some of my earlier problems.

    #55667
    ghoulash
    Member

    ISSUE NOW RESOLVED. I have reinstalled bbPress, this time using only a pure text editor (TextWrangler) and a different FTP client. Before I was using Dreamweaver as my interface, and you would think, after years of web work and experience with DW’s thug-like behavior with relative paths, that I would have known better.

    By the way, upon reinstalling without using DW, I did not have the initial reverse-slash issue. In other words, I am not having to use the path-to-url plugin, with or without its subsequent tweak.

    By the way 2: I know this would be a “duh” comment for many, but just in case it helps someone avoid the problems I had: When running bb-admin/install.php, in the field where it calls for your web site, do not enter a trailing slash. I tend to add one out of habit, and I think that was the cause of some of my earlier problems.

    #55104

    In reply to: What is a bozo?

    nanome
    Member

    I couldn’t find what a Bozo was either.

    Here is the link for others.

    https://bbpress.org/forums/topic/51?replies=4#post-241

    #54357
    nanome
    Member

    Last time I checked (about a minute ago :) ) I was still a man.

    Glad it worked for you as well.

    Since I only downloaded BBpress today this hack comes with “use at own risk warning”. Don’t know what other effects it may have on other parts of the script. Saying that, it works ok for me so far.

    #55664
    nanome
    Member

    Ghoulash and Spencerp

    Have a look at my post at the bottom of the thread.

    Same problem and not solved by the plug-in. A few tweaks and now works great.

    https://bbpress.org/forums/topic/700/page/2?replies=48

    #54355
    nanome
    Member

    Testing bbpress on localhost (xampp, windows) and viewing with firefox I get the same error in the stylesheet link.

    <link rel="stylesheet" href="http://localhost/leebbpress/bb-templates/kakumei/style.css" type="text/css" />

    Created the plugin as Trent suggested but that didn’t solve the problem. Played around with the code a bit and now it does work.

    Here is my hacked version.

    <?php

    function fix_bb_path_to_url( $url ) {
    $url = str_replace(array('//', '\\', '\'), array('/', '\', '/'), $url);
    return preg_replace( '|:/([^/])|', '://$1', $url );
    }

    add_filter( 'bb_path_to_url', 'fix_bb_path_to_url', 1, -1 );

    ?>

    Only difference is adding ‘\’ to the str_replace.

    #55670
    Null
    Member

    NAh don’t use tinyMCE it’s crap :D FCKeditor is so much better

    Also if I have the time, I am going to make a WYSIWYG editor for bbPress that uses open source scripts and will be 10 times smaller to install (also cause bbPress has limited functions to use), but thats far far far away for now :)

    #55663
    spencerp
    Member

    Just the same as I. Trent, I posted this yesterday or whatever..

    https://bbpress.org/forums/topic/700/page/2?replies=47#post-5463

    spencerp

    #55669
    wenkong
    Member

    thanks, I try TinyMCE and note some step for others need.

    https://bbpress.org/forums/topic/897?replies=1#post-5541

    do u know which plugin use in this: (seem not like TinyMCE)

    http://img359.imageshack.us/img359/5784/bbpresstoolsqg1.jpg

    #1577
    wenkong
    Member

    1. download the latest version of TinyMCE , I use version tinymce_2_1_0

    2. unzip file and upload “jscripts” folder to your server/bbpress/my-plugins/, so link will like this (http://example.com/bbpress/my-plugins/jscripts)

    3. add code to the bbpress templates header file (http://example.com/bbpress/bb-templates/kakumei/header.php),

    ADD CODE before ‘/head’ of header.php

    <script language=”javascript” type=”text/javascript” src=”http://example.com/bbpress/my-plugins/jscripts/tiny_mce/tiny_mce.js”></script&gt;

    <script language=”javascript” type=”text/javascript”>

    tinyMCE.init({

    mode : “textareas”

    });

    </script>

    4. Done! you can check it out when Post content in your bbpress. :)

    see demo capture: http://img147.imageshack.us/img147/5363/tinymceao7.jpg

    p/s: I need someone pitch in and help me how to hack bbpress to support more allowed markup like <u> <tr> <td> <font color> <font size>… etc

    #1576
    boomanfloral
    Member

    Hi,

    I just installed bbPress and on STEP TWO I got a screen with the error below. I’m not a programmer or anything, I just know basic HTML and that’s it, so I don’t know where to look for a way to fix this. Can anyone give me some pointers on how to fix this? Or is there a service where I can pay to have this fixed and running smoothly? Thanks!

    bbPress database error

    Second Step

    Now we’re going to create the database tables and fill them with some default data.

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE bb_forums ( forum_id int(10) NOT NULL auto_increment, forum_name varchar(150) NOT NULL default '', forum_desc text NOT NULL, 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) )

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE 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_id (topic_id), KEY poster_id (poster_id), KEY post_time (post_time), FULLTEXT KEY post_text (post_text) ) TYPE = MYISAM

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE bb_topics ( topic_id bigint(20) NOT NULL auto_increment, topic_title varchar(100) 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 forum_id (forum_id), KEY topic_time (topic_time), KEY topic_start_time (topic_start_time) )

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE bb_topicmeta ( meta_id bigint(20) NOT NULL auto_increment, topic_id bigint(20) NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (meta_id), KEY user_id (topic_id), KEY meta_key (meta_key) )

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE bb_users ( ID bigint(20) unsigned NOT NULL auto_increment, user_login varchar(60) NOT NULL default '', user_pass varchar(64) NOT NULL default '', user_nicename varchar(50) NOT NULL default '', user_email varchar(100) NOT NULL default '', user_url varchar(100) NOT NULL default '', user_registered datetime NOT NULL default '0000-00-00 00:00:00', user_status int(11) NOT NULL default '0', display_name varchar(250) NOT NULL default '', PRIMARY KEY (ID), UNIQUE KEY user_login (user_login) )

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE bb_usermeta ( umeta_id bigint(20) NOT NULL auto_increment, user_id bigint(20) NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (umeta_id), KEY user_id (user_id), KEY meta_key (meta_key) )

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE bb_tags ( tag_id bigint(20) unsigned NOT NULL auto_increment, tag varchar(200) NOT NULL default '', raw_tag varchar(50) NOT NULL default '', tag_count bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (tag_id) )

    bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
    CREATE TABLE bb_tagged ( tag_id bigint(20) unsigned NOT NULL default '0', user_id bigint(20) unsigned NOT NULL default '0', topic_id bigint(20) unsigned NOT NULL default '0', tagged_on datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (tag_id,user_id,topic_id), KEY tag_id_index (tag_id), KEY user_id_index (user_id), KEY topic_id_index (topic_id) )

    1. Created table bb_forums
    2. Created table bb_posts
    3. Created table bb_topics
    4. Created table bb_topicmeta
    5. Created table bb_users
    6. Created table bb_usermeta
    7. Created table bb_tags
    8. Created table bb_tagged

    bbPress database error: [Table 'mysql.bb_topicmeta' doesn't exist]
    SELECT * FROM bb_topicmeta WHERE topic_id = '0' AND meta_key = 'bb_db_version'

    bbPress database error: [Table 'mysql.bb_topicmeta' doesn't exist]
    INSERT INTO bb_topicmeta ( topic_id, meta_key, meta_value ) VALUES ( '0', 'bb_db_version', '688' )

    bbPress database error: [Table 'mysql.bb_users' doesn't exist]
    INSERT INTO bb_users (user_login, user_pass, user_email, user_url, user_registered) VALUES ('daniel', 'fae46cfefe5fb87eedf6f8801e497d06', 'daniel@boomanfloral.com', 'http://boomanfloral.com', '2007-03-14 22:01:31')

    bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
    SELECT * FROM bb_usermeta WHERE user_id = '1' AND meta_key = 'from'

    bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
    INSERT INTO bb_usermeta ( user_id, meta_key, meta_value ) VALUES ( '1', 'from', 'Vista, CA' )

    bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
    SELECT * FROM bb_usermeta WHERE user_id = '1' AND meta_key = 'interest'

    bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
    INSERT INTO bb_usermeta ( user_id, meta_key, meta_value ) VALUES ( '1', 'interest', 'Unusual Plants & Internet' )

    bbPress database error: [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 ' '', , '', '2007]
    INSERT INTO bb_topics (topic_title, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_start_time, topic_time, forum_id) VALUES ('Your first topic', , '', , '', '2007-03-14 22:01:31', '2007-03-14 22:01:31', 1)

    bbPress database error: [Table 'mysql.bb_topics' doesn't exist]
    SELECT * FROM bb_topics WHERE topic_id = 0 AND topic_status = 0

    bbPress database error: [Table 'mysql.bb_forums' doesn't exist]
    UPDATE bb_forums SET topics = topics + 1 WHERE forum_id = 1

    bbPress database error: [Table 'mysql.bb_topics' doesn't exist]
    SELECT * FROM bb_topics WHERE topic_id = 1 AND topic_status = 0

    Finished!

    #55661
    Trent Adams
    Member

    This thread will help out I think:

    https://bbpress.org/forums/topic/700/page/2?replies=47#post-4898

    If not, let me know as then I am assuming you have this installed on a localhost ?

    Trent

    #54354
    chrishajer
    Participant

    Is there a problem on Windows servers, or just on localhost on Windows?

    Of course my suggestion is only a temporary solution. But I am of the belief that the QA or dev server should be the same configuration as the production server, to eliminate the possibility of bugs being introduced when you go live. Installing this on localhost on a Windows desktop machine and ‘making it work’ when your production site is on a linux server seems to me like too much work.

    With bbPress still being beta, I’m not too worried about it. WordPress 1.0-RC1 was released somewhere around Jan 1 2004. Their version before that, 0.72 beta1 was released in August 2003. There’s certainly time to get it right.

Viewing 25 results - 62,026 through 62,050 (of 64,427 total)
Skip to toolbar