Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 62,401 through 62,425 (of 64,428 total)
  • Author
    Search Results
  • #54830

    In reply to: .htaccess/Cookie woes!

    Ziyphr
    Member

    You’re correct I missed a word out – htaccess isn’t be needed.

    I’ve not got much experience with bbPress but recently integrated WP and Vanilla. To confirm, are you intending to have 1 user table shared between your blog and forum? (so users can move seamlessly between the two)

    #54800
    macwise
    Member

    bbolman,

    thanks for the idea. I would probably prefer to do this. However, I have a few bbpress functions being called in the code on the page, and though I could probably dig about and find out how to replace it with wp code, it was not the most pleasant thought. I figured I’d just throw a page up on the bbpress side, and have it resolve at a myurl.com/directory/ as is common with wordpress. I found out how to take care of this…I achieved this by adding two lines in the .htaccess file…

    RewriteRule ^contest/$ /forum/contest.php [L,QSA]
    RewriteRule ^contest$ /forum/contest.php [L,QSA]

    I’m not trying to start a battle here, but I think your response, Null, might be a bit short-sighted and aggressive. After all, if I feel my software needs a static page, that may just be what it in fact does need.

    I agree with bbolman that this would probably be more efficiently handled by wordpress. However, since bbpress is still in it’s infancy, and it’s not integrated fully yet with wordpress, (this is my way of trying to sound like I’m not a completely right-brained individual), I think it’s fair to say that these decisions aren’t so cut and dried. Anyway, I appreciate the responses all the same, and will post any further findings here…

    #50414

    In reply to: Importing from vanilla

    Ziyphr
    Member

    The last phpBB to Vanilla converter doesn’t work perfectly with the latest Vanilla so needs some fiddling. Both Vanilla and bbPress could do with investing in a universal converter similar to what punBB has. It’s a lot of work but will be worthwhile.

    #54618

    In reply to: Plugin: bbMenu 1.0

    Null
    Member

    Hi,

    What kind of items would you like to add? Is it a plugin page like the memberlist plugin, or a link to another website, or a link to your homepage.

    The last one is technically hard to do cause of the way bbPress id’s there pages. bbMenu uses this to highlight the menu item when you are on a certain page. Since your homepage proberbly doesn’t support/use this, you can add an item in the menu, but it proberbly wouldn’t highlight when you are on that page.

    Hope you understand what I mean…

    If you want to add an “off-link” (the link goes to wikipedia or something) you could add this into bbmenu.php (not tested):

    At the bottom find:

    echo '<li ' . $first . '><a ' . $current . ' href="' . $rw['page'] . '">' . $rw['item'] . '</a></li>';

    Underneeth it add:

    echo '<li><a href="link-to-your-thingy.com">Thingy-name</a></li>';

    (Ignore the this forum adds them when editing this topic)

    This should add a new link ad the end in your menu, but you will not see it in the admin, or be able to put it anywhere else… It will also not be highlighted when you are on that page (in case you use it to go to your homepage)

    #52900
    hery
    Member

    There is an attempt here… Maybe usefull or not.

    http://hery.blaogy.org/2007/02/21/mediawiki-wordpress-integration/

    #1402

    This bug and sucurity fix is hot off the presses.

    http://bbpress.org/blog/2007/02/bbpress-081/

    #53155
    wpmaniac
    Member

    Any luck on this? I’m having this problem too. WP 2.1 bbPress 0.8, integration seems to be working other than this. Thanks!

    #54668

    In reply to: Import SMF to bbPress

    lonemadmax
    Member

    OK, if you are lucky and the server isn’t dead as it usually is, you may get it here.

    Remember, no guarantees. I hadn’t even read php before messing with that script.

    #52384
    giantsfan
    Member

    FYI, I modified the plug-in slightly to prevent moderators from messing with other forums they are not assigned to by this plug-in in bbpress version 0.8.

    changed function forum_moderators_process_capacities in forum-moderators.php, added some additional filters:

    $filtering_caps = array(

    'manage_topics' ,

    'edit_closed' ,

    'edit_deleted' ,

    'browse_deleted' ,

    'edit_others_tags' ,

    'edit_others_topics' ,

    'manage_posts' ,

    'ignore_edit_lock' ,

    'edit_others_posts',

    'delete_posts',

    'delete_topics',

    'close_topics',

    'stick_topics',

    'move_topics',

    'moderate'

    );

    added filters:

    delete_topics’,

    ‘close_topics’,

    ‘stick_topics’,

    ‘move_topics’,

    ‘moderate

    don’t know exactly what I’m doing but that hacked seemed to do what I want.

    #50413

    In reply to: Importing from vanilla

    bbolman
    Participant

    Is there a vanilla to phpbb deal? That seems like the easiest way to go…

    the bbPress folks ought to consider hiring a team member or somebody to just work on importers. Without them it makes getting people to make the move just that much harder.

    #1454
    macwise
    Member

    I am currently having a problem where when I log in to wordpress (or bbpress) at url:myurl.com, then click a link that is directed to http://www.myurl.com, then I am no longer logged in. (Cookie issues). I am trying to figure out how to define either *.babyquestions101.com (preferably), or if that won’t work then babyquestions101.com AND http://www.babyquestions101.com.

    Give it a shot here:

    http://babyquestions101.com/

    and the forum is here:

    http://babyquestions101.com/forum/

    PLEASE CREATE ANY ACCOUNTS WITH THE WORD “TEST” AND ANOTHER WORD/NAME IN THE ACCOUNT NAME, unless of course you intend on keeping the account.

    UPDATE:

    My wordpress options blog url (in the wordpress admin panel) is listed WITH the “www” in front of the domain.. I am digging into mod_rewrite directives, but to be honest, I’m not really grasping it. Right when I think I have it figured out, it throws me. I have been able to get requests going to http://babyquestions101.com to redirect to http://www.babyquestions101.com/ using mod_rewrite in the .htaccess files. However, when I try it out in the forums, (http://babyquestions101.com/forum/) it just resolves at that address, and doesn’t insert the www. Any ideas?

    #54825

    In reply to: Deleted Keymaster

    chrishajer
    Participant

    Here’s mine:

    a:2:{s:8:”throttle”;b:1;s:13:”administrator”;b:1;}

    Mine is in wp_usermeta though since I am integrated (not sure if that matters or not.)

    Also, “administrator” is there since I changed /bb-includes/capabilities.php to make the title administrator rather than key master. Did you make a similar change in your capabilities.php?

    It’s also possible that this might help you:

    https://bbpress.org/forums/topic/185?replies=6#post-909

    #53920

    In reply to: New Posts

    Just take a look here https://bbpress.org/plugins/topic/30?replies=4 or try the demo here http://www.la-school.com/bbpress/ .. I’m working on this thing! … I’ve just not that much time at the moment, sorry.

    #54813
    chrishajer
    Participant

    Maybe this will help:

    https://bbpress.org/documentation/faq/#pretty-permalinks

    https://bbpress.org/forums/topic/13?replies=13

    In addition to making the change to true in the config, you need to create the rules in an .htaccess file in your server root. Your server needs to support it too.

    #54667

    In reply to: Import SMF to bbPress

    vedmak
    Member

    >>Now, if there’s any interest, where do I send it?

    Certainly.

    #54814

    In reply to: Rewriting URLs

    mirce
    Member

    Marky,

    I have the same issue. I want to switch from PHPBB to bbPress and keep the internal links the same. You can try to adjust my plugin for this:

    https://bbpress.org/forums/topic/771

    Depending on how the links are right now at PHPBB you may be able to do it.

    #1451
    marky
    Member

    I switched from phpBB to bbPress recently thanks very much in part to a script found in these forums.

    Now, many of the existing posts contain links to each other in the old phpBB format /topic.php?t=123. Since the topic IDs have stayed the same in the conversion process, I’d like to use ModRewrite to automatically redirect to the new /topic/123 URL scheme. I’ve tried the following in my .htaccess, but it doesn’t appear to work. (Admittedly, my knowledge of ModRewrite is shaky at best.)

    RewriteEngine on
    RewriteRule ^/forums/viewtopic.php?t=([0-9]+)$
    /forums/topic/$1 [R]

    (In the real code there isn’t a linebreak on the second line.)

    Does anyone have any advice?

    #49991
    ebotunes
    Member

    Yes, I encountered this problem last night. I had to manually add the topic_resolved field to the bb_topics table then it worked fine.

    other than that – superb script – worked a treat – thanks very much!!

    ebo

    #1450
    enquirer32
    Participant

    I have installed the latest version of bbPress in a sub-directory of my blog ../bb

    Links for template pages generally work and so does the link to the admin and presentation, plugins etc.

    But the links to Add Topic, Forums etc all just take me back to the blog home page. Is this something to with WordPress Integration which I have somehow messed up?

    Any help much appreciated

    #53919

    In reply to: New Posts

    Ziyphr
    Member

    Just wondering, is anyone is making progress on the new posts front?

    I think for many people it could be the #1 reason not to use bbPress, from both a user and developer perspective.

    #1449
    dcfridge
    Member

    I am using Basic-authentication for all of other authentication and access control on my site, and would like to have bbPress detect that and leverage $ENV{‘REMOTE_USER’}

    Is this possible? Has anyone done it, that can share the code?

    Thanks,

    – Dave

    #1448
    dcfridge
    Member

    The installation seemed to go smooth, and I can get to the main admin page, and main forum page, but when I navigate to “edit profile” I get the error below. A very similar error comes up when I try to post…I think it may have something to do with a redirection setting, but not sure.

    – Dave

    https://www.mydomain.com/bbpress/profile/1

    Multiple Choices

    The document name you requested (/bbpress/profile/1) could not be found on this server. However, we found documents with names similar to the one you requested.

    Available documents:

    * /bbpress/profile.php/1 (common basename)

    Please consider informing the owner of the referring page about the broken link.

    #53088
    spencerp
    Member

    cre8tive, I’ll try and get up a downloadable zip archive of the theme soon. I’ve just been so busy lately sigh, that I haven’t had much time on the bbPress/WP side of things.. I’ll keep you posted though.. ;)

    spencerp

    #54265
    spencerp
    Member

    Is this going to get submitted into the SVN trunk for 1.0 soon, or..? I’m really hoping so, all this “applying patches” is getting tiresome and confusing, sigh.

    It’s one of the main reasons I haven’t even upgraded my bbPress forums to the latest full .80, with category enhancement, just seems pointless… =(

    spencerp

    #53322
    spencerp
    Member

    Sorry guys/gals.. have just been swamped the past few days/weeks sigh. I’ll try to get on this soon.. Also, I’ll have to setup a brand new forum on the localhost, because currently what I have running now on my forums is using various plugins/enhancements sigh..

    I’ll have to do one up, on a plain jane bbPress install, so I know what’s really going to be needed/used and so forth.. I didn’t even get to upgrade my forums to the full .80 release yet sigh.. shoot! I gotta get on things soon!!

    spencerp

Viewing 25 results - 62,401 through 62,425 (of 64,428 total)
Skip to toolbar