Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

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

    #50412

    In reply to: Importing from vanilla

    Ziyphr
    Member

    I’m currently looking at Vanilla and bbPress, may I ask what you didn’t like about Vanilla, in comparison to bbPress?

    #1447
    macwise
    Member

    Hello,

    I need to add a custom page to my forum that acts like any other page, but with custom content I have added. It’s actually going to be a “Contest Status” page, where users can check to see if they have completed the steps necessary to enter the contest, and once they have to track the contest’s progress. I know how to create a custom page in wordpress that just points to:

    http://www.myurl.com/chosen-page-name

    but I can’t quite wrap my brain around this in bbpress. I want the most elegant, simplest, and most unobtrusive solution I can find. I would love the page to resolve to:

    http://www.myurl.com/forum/contest

    Is this functionality built in? Is it plugin-able? (I’ve never built a plugin). Is there a simple workaround?

    Any tips or information is greatly appreciated.

    #1441
    M
    Member

    1. Under the “Installation” header: “ugrading instructions” – it should be “upgrading.”

    2. Under the “Development” header, second paragraph: “bbPress Trac enviroment” – it should be “environment.”

    I know to some of you it isn’t a big deal, but there’s nothing worse than having a professional, well-built application being represented by misspellings.

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