Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 63,026 through 63,050 (of 64,450 total)
  • Author
    Search Results
  • #1248
    timgedny
    Member

    I’ve installed my BBpress forum and it all seems to be working great with the exception of the RSS links which just go to a 404 page. I think this forum was doing the same thing last time I tried – does anyone have a fix?

    Thanks in advance for your help.

    #52826

    Maybe using a array? Like

    $menu['FAQ'] = 'faq.php';

    Passing this through a filter so everybody can add his links via filter in his plugin…

    #51691
    davidbessler
    Member

    I tested it out and it sent me an email when I posted a new topic. That works for now. But, like we said, an “add forum to favorites” plugin is needed. For anyone reading this, what we are talking about is strictly for the plugin called notification_all.php which can be foun here:

    https://bbpress.org/forums/topic/313?replies=34#post-1784

    #1147
    Null
    Member

    Hi,

    I am in the proces of making a nice menu plugin. It has al the features like drag & drop etc etc. This works great. Now I want pluginbuilders, who have made a plugin and use a new page like the memberlist plugin, to be able to easy add their page to the menu.

    I would like to do something like this (dont mind the wrong syntaces, its for some easy explaining):

    In my menu.php plugin page I’ve added something like:

    function get_menu_pages ()

    select $menu_titel, $menu_page from bb_menu where blablabla

    I need 2 variables now: $menu_titel and $menu_page

    A new plugin adds in its plugin page these variables:

    Excample: memberlist plugin

    $menu_titel = Memberlist

    $menu_page = memberlist.php

    This works, no problem so far, but what happens if in another plugin page is added:

    Excample: FAQ plugin

    $menu_titel = FAQ

    $menu_page = faq.php

    How will function get_menu_pages () react? Will it only get the first variable from the memberlist plugin, or will it get both, or will it simply crash. Is this even possible at all?

    The reason I want to do it this way, is that plugin builders can easily add their page to my menu plugin by simply filling in the $menu_titel and $menu_page variables on their own plugin page.

    Hope this makes any sence and if this doesn’t work, what solutions are there for this?

    #51181

    In reply to: Private Forum script

    davidbessler
    Member

    Any news on the roles-based forum permissions. It is the only feature holding me back now … I have been exploring all sorts of options involving more advanced forums (smf, phpbb etc …) but those involve crappy bridges, none of which work well or look nice. I love bbpress’ simplicity … so, any way to restrict certain forums to certain users? I don’t even need it to be roles-based. I’m OK just selecting users individually to have access to a specific forum.

    #51688
    davidbessler
    Member

    If I’m not mistaken Trent, I think that plugin notifies the ADMINISTRATOR of ANY post to ANY topic. Since it does not add any visible subscription option to any forums, I can only assume that’s what it does. The only other possibility is that it emails EVERYONE when ANYONE posts ANYTHING ANYWHERE on bbpress, which would be a disaster. Can anyone verify what exactly notify_all does? I installed it, but could not see a difference.

    #51687
    Trent Adams
    Member

    I think the following will do what you are hoping. It is referenced 2 or 3 times in this thread.

    https://bbpress.org/forums/topic/313?replies=34#post-1784

    Trent

    #51958
    Staffan
    Member

    Alright. I’ve done some investigations and I think I know why I get a blank space: when a new user registers through bbPress it seems like he’s not given any “display name”.

    #53374
    spencerp
    Member

    For the UTW problem, do what this guy said here once, see if that helps. Good luck!

    spencerp

    #53416
    Trent Adams
    Member

    $bb->path = '/bbpress/';

    I am also assuming that you don’t want to integrate the logins with WP then as you don’t have your wordpress information for integration.

    Trent

    #53415
    chrishajer
    Participant

    Your forum is at http://ward3brighton.ca/bbpress/ not http://ward3brighton.ca/forums/ . It’s unstyled since the path is wrong. It seems to me that you changed the config.php to put the forum in a directory called forums but left the folder name as bbpress when you unzipped it.

    Can you check that and rename the bbpress folder to forums?

    #53414
    freelantz
    Member

    Thanks, I was just about to give up.

    <?php

    // ** MySQL settings ** //

    define(‘BBDB_NAME’, ‘#####’); // The name of the database

    define(‘BBDB_USER’, ‘#####’); // Your MySQL username

    define(‘BBDB_PASSWORD’, ‘######’); // …and password

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.

    // Adjust the domain and path to suit your actual URL.

    // Just the domain name; no directories or path. There should be no trailing slash here.

    $bb->domain = ‘http://ward3brighton.ca&#8217;; // Example: ‘http://bbpress.example.com&#8217;

    // There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.

    $bb->path = ‘/forums/’; // Example: ‘/forums/’

    // What are you going to call me?

    $bb->name = ‘The Street’;

    // This must be set before running the install script.

    $bb->admin_email = ‘######@ward3brighton.ca’;

    // Set to true if you want pretty permalinks.

    $bb->mod_rewrite = false;

    // The number of topics that show on each page.

    $bb->page_topics = 20;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 30;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = -4;

    // Change this to localize bbPress. A corresponding MO file for the

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = ‘###########’; // Example: ‘0123456789ab’

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave the rest as it is.

    $bb->wp_table_prefix = ”; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ”; // WordPress – Options->General: Blog address (URL) // No trailing slash. Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ”; // WordPress – Options->General: WordPress address (URL) // No trailing slash. Example: ‘http://example.com&#8217;

    /* Stop editing */

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?>

    #1242
    freelantz
    Member

    I’m able to successfully install the bbpress. I’m installing it in a subdirectory of my PUBLIC_HTML

    directory. So I have:

    public_html/bbpress

    public_html/wp-content

    public_html/wp-admin

    etc.

    I run domain.com/bbpress/bb-admin/install.php

    Everything seems okay. Then I log in at domain.com/forums and bam!… nothing but Error 404 – Not Found.

    I find it strange after I login I’m directed right to my WordPress template with the 404 error. Initially I tried integrating with WordPress, but now I’m trying to get this running very simply: no mod_rewrite, no integration, disabled any plugins that might be interfering (home page control), etc.

    I uninstalled (dropped all bb_ tables) and reinstalled several times but same result.

    Any advice?

    #51957
    Atsutane
    Member

    Correct me if i wrong .. by default when a user is regis. WP will set the “display name” equal to “username”. I try the code already and i dont get a blank name :) Anyway maybe i will change the code to do a double check.

    #53009
    Null
    Member

    Does any one has a template test page already up? or is there a plugin, so you choose a template from a ddlb and the page shows the forum in the chosen template…

    #53177

    In reply to: No Login with IE6

    pschmitz
    Member

    I only had bbpress integration installed on word press. disabling it. upgrading to .75, turning off my-templates, have not solved the issue.

    #53176

    In reply to: No Login with IE6

    ear1grey
    Member

    Any plugins installed?

    See also: https://bbpress.org/forums/topic/236

    #50380
    larmir
    Member

    No, we haven’t. Chrishajer’s (Chris) been graciously helping me off the forum since I’m working with a private forum. He’s spent quite a bit of time on this and hasn’t found a solution. He had some great ideas, they just didn’t work. My next step is to contact my host and talk with them. They host WordPress so perhaps they know something indepth about bbPress. If I find a solution, I’ll let you know.

    I do want to thank Chris for all the time and effort he’s put into this for me. Thank you, Chris.

    #53008
    Trent Adams
    Member

    It is simple enough to change back if you want to. Just don’t want a bunch of ‘complete’ bbPress clones out there.

    Trent

    #51956
    Staffan
    Member

    Great. Thank you! There’s only one little problem: if the user haven’t entered a nickname no name at all is shown. I guess it should be written so that if the user has a nick name – show nick name; if the user dosen’t – show username.

    #51955
    Atsutane
    Member

    I update the plugin already .. Now it gonna show “display name” instead of “username” like before. Tell me how it going :)

    #53007
    Null
    Member

    Like it, only put the original bbPress logo in it instead of yours: https://bbpress.org/bbpress.png

    #53006
    yooakim
    Member

    This theme is a lot nicer that the old default theme.

    It works but there are a few issues.

    When i click on “View your profile” the menu choices goes off way out to the right…

    Great work!

    /Joakim

    #53387

    This should fix it. Thanks!

    https://trac.bbpress.org/changeset/608

    #53392

    In reply to: My Template

    chrishajer
    Participant

    Hi, I see a couple things.

    You’ve made the div #header 800px wide, but the div #main below it is only 760px wide – they need to be the same if you want the header image as wide as the div below it. Also, the left and right margins should be auto to match the div below (handles screen resolutions down to 800×600 that way, and is centered on anything bigger.)

    So, this in your div #header in the style.css:

    margin: 0px auto;

    width: 760px;

    That makes the header graphic spots.gif as wide as the ‘table’ below it. If you want it to be as wide as the page, that’s something different altogether.

    Since you removed the bbPress circle logo, you might also want to move the #header h1 over to the right a little bit:

    right: 10px; instead of the 59px there now.

    Hope that helps.

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