Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 62,076 through 62,100 (of 64,459 total)
  • Author
    Search Results
  • #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.

    #54353
    Fakey
    Member

    How about installing a linux distro in house since your server is linux also?

    That’s a temporary solution, but once bbPress goes final and gets publicity the likes of WordPress, this Windows/localhost problem will need to be addressed.

    #1575
    LMD
    Participant

    This plugin is a companion to my Add Titles to Replies plugin — that is, the ‘Add Titles to Rplies’ plugin is required for the ‘Latest Replies’ plugin to work.

    What it does is to display the latest replies, by title, on the front page of the forum (similar to “Latest Discussions”).

    More info and download:

    Latest Replies Plugin

    Add Titles to Replies Plugin

    #55573

    In reply to: User ID = 999999999?

    flaerpen
    Member

    I have exactly the same “problem”. It all started after converting my phpBB to bbPress so I think thats the problem.

    #55668
    chrishajer
    Participant
    #55571

    In reply to: User ID = 999999999?

    ebotunes
    Member

    this has happened to me as well. Two new users have registered and have IDs 99999999 and 1000000000. They appear to be spam though so I was very worried that they’d somehow managed to hack their user id from the front end??? Highly unlikely though.

    I am wondering if the conversion from phpBB to bbpress has anything to do with it? ( https://bbpress.org/forums/topic/47?replies=12 )

    Did you use this wittmania? I did, and these are the first users to register since the migration. I will investigate a bit further over the next few days when i get the chance….

    #1572
    wenkong
    Member

    I see that forum in WordPress.org have this toolbar function in reply text area, is it tinyMCE or whatelse Editor?

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

    #55522
    bbolman
    Participant

    Here’s how to fix this problem: Download the plugin called Fix bbPress (https://bbpress.org/plugins/topic/37?replies=4) refresh, and that should fix your problem. It isn’t that you aren’t logging in, it’s just it doesn’t show that you did. Try logging in, then it will show the user name and password fields. Then refresh the page, and it will say you are logged in. Install that plugin though and that will fix your problem.

    #54352
    spencerp
    Member

    Do you have any issues transitioning from a desktop environment to a server environment (as I did, with MySQL and PHP versions and configs and such)?

    To tell you the truth, I didn’t have any issues going from my Xampp Lite localhost copies, straight to my live servers. I just find it odd though that this whole time of running that bbPress on the localhost, and just applying the SVN updated files from time to time. It was fine..

    It was only when I installed it fresh, with the latest copies of Trunk that it gave me this problem. I SVN CO the trunk on my other new domain via SSH and it went smoothly… no troubles though, I guess that’s to be expected. Hmm.. I’ll have to look into the problem a little deeper.

    I’m trying to when I have the time, but with being so busy.. it’s hard taking a gander at it…sigh.

    How about installing a linux distro in house since your server is linux also?

    Geesh, didn’t even think of that, or try it. Thanks for that, I’ll have to give it a go then. ;) :)

    spencerp

    #55616
    chrishajer
    Participant

    You could disable it just to see if that’s the problem. In addition to removing or modifying the .htaccess file, you need to set

    $bb->mod_rewrite = false;

    in your config. That will turn off the rewriting completely. Both need to be working for the pretty permalinks to work (i.e. the .htaccess is present, and the $bb->mod_rewrite = true. It doesn’t work on all servers though. Oddly, it works for my WordPress just fine, but not for bbPress which is in a subdirectory, so I have mine set to false for bbPress.)

    I would disable it for now, just to see if that’s causing your problem.

    #55623

    In reply to: Duplicate Posts

    chrishajer
    Participant

    It happens for me if people don’t wait for their post to appear. My server has a response time of about 8 seconds (i.e. the “Posted xx seconds ago” at the bottom of the post, always shows 8 there, where on this site, bbpress.org normally shows 0 seconds ago.) So, yes, that does happen, but not enough that I worry about it. It is from people hitting submit twice.

    I read about a javascript solution once, but I never looked into it.

    #1568

    I’m getting occasional duplicate posts on bbPress. I’m guessing part of it might be users clicking the submit button twice but I wondered whether this is a problem for anyone else?

    #55588
    cadre
    Member

    I think this is the plugin you were thinking about, Null. It worked very well for me:

    https://bbpress.org/plugins/topic/3?replies=7

    #55613
    kessel
    Member

    Thanks. Got it going, but now I get nothing but 404 pages that insist on a call to “http://ourdomain/forum/install/install.php&#8221; — which doesn’t exist, and doesn’t exist in any of the documents on the site. Hrmmmm…

    This happens when I try to access the main forum page as well as any of the bbpress admin pages. Very strange…

    #55598

    In reply to: web designing

    wittmania
    Member

    Dear rose01,

    All your base are belong to us.

    Sincerely,

    Your new bbpress.org overlords

    #55612
    wittmania
    Member

    As The Animals said, “Oh, Lord, please don’t let me be misunderstood!”

    Kessel, you may need to try this plugin: Usernames I18N Fix. I had the same problem b/c I had a space in my username and it wouldn’t recognize it. I’m not sure if you can install the plugin before you have run the install routine. If not, go back into WP and create a new user with a *very* simple name, give the dummy user admin rights, and then go through the install. Once you’re in, go to your *real* username, make it a keymaster, and if you have this plugin running you should be all set.

    And don’t be such a tool, spencerp. Sheesh. Give the new guy a break.

    #54350
    spencerp
    Member

    Here’s one site’s informations:

    http://spencerp.net/blah.php

    Yeah, I’ve played on the live environments before. Sub domains and such. However, I’m also on crap dial-up connections and don’t always have time to be online. Also, since there is only ONE phone line in the house and the family using the line .. it sucks.

    But this issue wasn’t that bad before, it just started up I think the past few times of fondling the bbPress software. They need to fix this shit, and once it’s working good.. leave it the hell alone! LoL! =P

    spencerp

    #54349
    chrishajer
    Participant

    What OS is the live site/server running? I have always had problems testing on platforms other than the final one, even from linux to linux, with things like PHP and MySQL versions. So, the testing I did never seemed worth it. Why not set up a subfolder or subdomain on the live host and play there, to eliminate variables?

    I think the developers could better use their resources making bbPress work in production environments (MS and *nix) rather than on localhost. There seem to be quite a few path/slashconfig issues getting it running on localhost.

    #55609
    kessel
    Member

    OK. At the “First Step” in the installation, bbpress asks for the following:

    Administrator

    (form box) <—- there is supposed to be a dropdown here!

    Enter your username below. You will be made the first Key Master on these forums. Leave this blank if you want to create a new account.

    First Forum

    Forum Name:* (form box)

    Description: (form box)

    I get no dropdown. Regardless of what I enter — or even if I leave it blank — it returns, “Username not found.”

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