Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 57,426 through 57,450 (of 64,431 total)
  • Author
    Search Results
  • #64771
    adaptiman
    Member

    Clarification – when bbadmin tries to login after integration, the response is that bbadmin does not exist. I think this is because bbadmin credentials created by the bbPress installation are not stored in the WPMU users table. Of course, it wouldn’t exist. But bbPress doesn’t copy over those credentials or look at both tables to authenticate.

    #3321
    adaptiman
    Member

    I’m using bbPress 0.902 and WPMU 1.3.3. Integrating the bbPress with the user database works, but then I can’t access the bbPress admin console anymore. Here’s what happens:

    1. install bbPress without integration and in the process create an admin account bbadmin.

    2. The bbadmin account works, I can access the bbPress admin screens, etc.

    3. Change the integration settings to point to the WPMU users table. I do NOT do the cookie integration as this is problematic with the new password hashing.

    4. bbPress immediately logs bbadmin out. I can login with WPMU user accounts, but none of them can access the bbPress admin console. More importantly, the bbadmin account can’t login anymore.

    I’ve replicated this problem 7 times.

    The bottom line is that I can’t use the db integration feature at all.

    Question – how can I integrate the WPMU users and still access the bbPress admin console?

    #64759

    In reply to: GMT Offset

    dangrey
    Member

    “bb_current_time is in the functions file inside bb-includes directory. But you probably should touch that otherwise when you update bbpress, it will break again. :)

    Tell me about it — I’ve already hacked another core file which has to be re-tweaked every upgrade…

    BTW isn’t this a bug really?

    #60766

    In reply to: PHPBB3 Converstion

    yazerty
    Member

    Thanks for the news :).

    But isn’t it a beta script to import phpbb3 to a bbpress ?

    #3318

    Topic: Login out

    in forum Troubleshooting
    #64758

    In reply to: GMT Offset

    scooter7978
    Member

    bb_current_time is in the functions file inside bb-includes directory. But you probably should touch that otherwise when you update bbpress, it will break again. :)

    The SQL I used was just an interval clause…i.e. if I was going to import my current forums I would use something like:

    SELECT ID, Body, DateCreated – interval ‘9 30’ hour_minute FROM current_forum_whatever

    This takes the date field and drops 9.5 hours off, coincidentally, my time zone.

    You could probably adapt this to an ‘update’ statement to change what’s already in your database, eg:

    UPDATE bb_topics SET DateCreated=(SELECT DateCreated – interval ‘9 30’ hour_minute);

    I haven’t tested it but it probably wouldn’t be too far wrong.

    #64715

    Having just read the thread over here, I went and rechecked that my WordPress “secret” setting as listed in /wp-admin/options.php matched the setting in my bbPress admin-stettings-wp-integration screen and found that somehow they no longer matched. My best guess is that in the database “update” with the 2.5.1 upgrade of WP, it regenerated the database secret, thus killing the integration.

    #60765

    In reply to: PHPBB3 Converstion

    Sam Bauers
    Participant

    Import/Export is being improved as part of a Google Summer of Code project. We will hopefully have some results from that to share by the end of it.

    The basic idea is to create export plugins for other forum software which can export to a standard format. Then we will have one importer to import that standard format into bbPress.

    #64714
    berfarah
    Member

    Me too >.< I thought it was just me… heh

    #64584
    dexter78
    Member

    Hello people, I use bbpress but I don`t know how can I use in posts backticks… :-(

    #64756

    In reply to: GMT Offset

    scooter7978
    Member

    On thinking about it a bit further, I went back to my SQL posts and kludged a statement which removes 9.5 hours from the various date fields that populate the bbpress database.

    On restoring everything back, it’s ok now.

    #3314

    Topic: GMT Offset

    in forum Installation
    scooter7978
    Member

    I’ve been playing with bbPress for a few days and noticed that when I started posting the time was set all wrong and the posts I imported were dated wrong (only ones from that day).

    Since I’m in South Australia (+9.5 GMT) I had set the gmt_offset option in the admin interface to 9.5 to accomodate my differences but it wouldn’t set the post date/time to my timezone when posting.

    The only way around it was to modify the bb_current_time function and change this line:

    $d = gmdate(‘Y-m-d H:i:s’);

    to this:

    $d = gmdate(‘Y-m-d H:i:s’, time() + 3600*(bb_get_option(‘gmt_offset’)+date(“I”)));

    So that it actually uses the GMT offset.

    Of course, doing this only means that current posts are displayed at the right time but previous ones are wrong because they’re all set to the current time when posted and the system then adds 9.5hrs onto them when being read.

    I’m assuming either I’ve missed something in the config or the time option just isn’t using the gmt_offset value from the db for anything.

    Can someone confirm or refute this please? I’d like to be able to change it back and do it the proper way if possible.

    #3313
    gerikg
    Member

    I would like to put some plugins from bbpress into the WP widget.

    For example: The Simple Online By Thomas Klaiber would be great on a widget.

    If I put the code on WP widget it errors when on WP but comes up when on BB.

    I guess I just need an if-then statement? but I don’t know how to write it.

    #64723

    In reply to: stars next to names

    bobbyh
    Member

    affacat, are you talking about the stars that indicate the ratings of particular plugins, e.g. https://bbpress.org/plugins/topic/unread-posts/ ?

    #50417

    In reply to: Importing from vanilla

    scooter7978
    Member

    I’m using Vanilla on my forums and since I like to change things every now and then, I’m going to move to BBPress in the near future. Since I’m testing at the moment, I thought I’d hand over the SQL statements for grabbing the categories, topics and posts and formatting them as best as possible for bbpress.

    SQL to get the categories:

    SELECT CategoryID, Name, REPLACE( LCASE( Name ) , ‘ ‘, ‘-‘ ) AS Slug, Description, Priority

    FROM LUM_Category

    SQL to get the topics:

    SELECT DiscussionID, Name, REPLACE( Name, ‘ ‘, ‘-‘ ) AS Slug, AuthUserID,

    (SELECT LUM_User.Name FROM LUM_User WHERE UserID = AuthUserID) AS PosterName,

    LastUserID, (SELECT LUM_User.Name FROM LUM_User WHERE UserID = LastUserID) AS LastPosterName,

    DateCreated, DateLastActive, CategoryID, Closed, Active, (SELECT 0) AS LastPostID, Sticky, CountComments, (SELECT 0) AS TagCount

    FROM LUM_Discussion

    SQL to get the discussions:

    SELECT CommentID, LUM_Discussion.CategoryID AS ForumID, LUM_Comment.DiscussionID, LUM_Comment.AuthUserID, Body, LUM_Comment.DateCreated, RemoteIp

    FROM LUM_Comment

    JOIN LUM_Category ON LUM_Discussion.CategoryID = LUM_Category.CategoryID

    JOIN LUM_Discussion ON LUM_Discussion.DiscussionID = LUM_Comment.DiscussionID

    ORDER BY CommentID, ForumID

    SQL to get the tags:

    SELECT TagID, REPLACE( Tag, ‘ ‘, ‘-‘ ) , Tag, (SELECT 0) FROM LUM_DiscussionTags

    From there you will need to fix up the slugs in the bb_topics table and in the bb_forums so that the web browser doesn’t have a conniption when it tries to load a forum thread but you can do that with a series of select(replace) queries like this:

    update bb_topics set topic_slug = replace(topic_slug,’?’,”);

    update bb_topics set topic_slug = replace(topic_slug,’.’,”);

    update bb_topics set topic_slug = replace(topic_slug,’/’,”);

    update bb_topics set topic_slug = replace(topic_slug,’&’,’and’);

    update bb_topics set topic_slug = replace(topic_slug,’"’,”);

    update bb_topics set topic_slug = replace(topic_slug,’\’,”);

    update bb_topics set topic_slug = replace(topic_slug,'”‘,”);

    update bb_topics set topic_slug = replace(topic_slug,’!’,”);

    update bb_topics set topic_slug = replace(topic_slug,’,’,”);

    update bb_topics set topic_slug = replace(topic_slug,”’,”);

    update bb_topics set topic_slug = replace(topic_slug,’#’,”);

    There might be a better or quicker way of doing the last bit but since it works fine on mine I am not too concerned.

    I had to kludge some results in the queries like; SELECT 0 or SELECT 1 to get the answers I wanted or to pad out the columns to fit properly into the bbpress SQL layout. In most cases its just count fields or an active or open flag which is nearly always 1 or 0 anyway.

    Generally this is all you need to get started, from there you can just export this table data to a CSV or something and then import it into the requisite bbpress table. If you go into the admin interface of bbpress and get the system to recount everything it should be ok from there. I only recommend doing this if you’re familiar with the inner workings of MySQL, otherwise you could bollocks things up and then noone wins.

    Please remember too that this is the basics, if you’ve integrated with wordpress you’ve still got some work ahead of you to coordinate your wordpress ID’s with your forum ones. It can be done as I managed to do it, it’s just painful.

    Cheers,

    Scott

    #64583
    kernow
    Member

    Thanks, I have upgraded OK, though I have a login/logout integration problem now with WordPress and bbpress. I’ll ask someone I know with more technical expertise for advice.

    #64713
    kernow
    Member

    I unfortunately have the same problem :(

    #64661
    enquirer32
    Participant

    OK! Thanks for your help. I re-checked everything and there was a different ‘secret’ – found by visiting wordpresssite/options.php. I keyed this into the admin section of bbpress. I don’t know if this was the only thing as I tweaked the config file of WordPress to have two lines defining the cookie domain (it had only one). Anyway we have blast off.

    #64660
    enquirer32
    Participant

    thanks. still does not work.

    1. upgraded bbpress to .9.0.2

    2. yes

    3. not sure how i can check this?

    4. think so. added sthg to bbpress config shall i do the same to wp config?

    5. yes

    #64659
    domercmh
    Member

    This checklist was gold. Thanks.

    I’m actually using an older version of WordPress (integrating wordpress 2.3.1 + aMember + bbPress). aMember doesn’t yet work with wP2.5. Had to follow bbPress instructions for older installs of WP.

    After that, and confirming against your checklist, everything worked.

    #60763

    In reply to: PHPBB3 Converstion

    yazerty
    Member

    Wow, there isn’t any tool to move from phpbb3 to bbpress ? How bad it is :-(.

    I hope there will be soon :))…

    #3310
    Bloggsbe
    Member

    I’ve made a plugin that lets you set your own default gravatar.

    You can also choose to use Identicons, Wavatar or monsterID as the default gravatar.

    You set the size and the rating you want.

    This plugin overrides the built in Gravatar function, but you still have to choose to show the avatars in the standard options page, but all other gravatar options from that page is ignored.

    I’ve tested it on bbPress 0.9.0.2 and 1.0-dev (from trunk), but it should work on all 0.9.x versions.

    You can download the plugin from here.

    I’ve also submitted it to the plugins list here on bbpress.org, and will (hopefully) show up there to :-)

    RG

    #64656

    In reply to: Portuguese Brazilian

    http://svn.automattic.com/bbpress-i18n/pt_BR/

    Done. You should be able to check in content with your username (joildo) and password.

    #55402

    Ok, I just realized that what worked for me only applied to a ‘clean’ top-level install, and what people are having issues with is installing bbpress in example.com/forums/, because example.com’s .htaccess is over-riding example.com/forums/ ‘s .htaccess file.

    So here’s my example.com (permalinks work great):

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.php [L]

    </IfModule>

    chmod: 644

    And here’s my example.com/forums .htaccess content:

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /forum/

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^([^/]+)/(.*)?$ /forum/$1.php [PT,QSA]

    </IfModule>

    Any ideas?

    Thanks

    #64658
    Sam Bauers
    Participant

    Here’s a checklist:

    1. You are running latest versions of WordPress (2.5.1) and bbPress (0.9.0.2)
    2. You have matched SECRET_KEY in wp-config.php with BB_SECRET_KEY in bb-config.php
    3. You have matched WordPress “secret” database option with bbPress “secret” database setting
    4. You have setup compatible cookie domains and paths in config files (see instructions in bbPress admin)
    5. You are successfully sharing user tables from WordPress with bbPress

Viewing 25 results - 57,426 through 57,450 (of 64,431 total)
Skip to toolbar