Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 62,676 through 62,700 (of 64,423 total)
  • Author
    Search Results
  • #53011
    Null
    Member

    I still run 0.74 I believe, I will check it when I have the time :)

    #54101
    Sam Bauers
    Participant

    That would be ideal. It was just that this way I could release it without getting permission to integrate it first. If you are happy to have me work on your plugin, then just say the word. I could create a branch with the changes, or just dump a new version of the plugin in once you have seen it. I’m not sure that I have commit access to that folder in the plugin SVN though.

    #54155

    In reply to: Dumb question!

    Trent Adams
    Member

    Who knows. Maybe wordpress.com will spark some kind of hosted bbPress solutions. May be wishful thinking though….

    Trent

    #53010
    Trent Adams
    Member

    I changed this up a little bit and made it work for the up and coming 0.8 theme. It would be nice to have someone test it again on 0.75 as I don’t have an install anymore, but I think my directions should work. Download is in the first post of this thread or check out the entry on my blog or over at the complete template and plugin blog, Pro Forum

    Trent

    *EDIT*

    Null I am using the original logo again. ;)

    #49898
    andyh2tk
    Member

    Its all css now, I got the php and html done, I have to do a lot of css work to make it look good.

    #49897
    mozey
    Member

    Nice article,

    #49896
    andyh2tk
    Member

    It’s exactly what I did, and a bit outdated. I might have to switch themes.

    #49895
    Trent Adams
    Member

    Typo and it stripped the link. It is working now above as well as here:

    http://www.adityanaik.com/blog/bbpress-and-wordpress-integration/

    Trent

    #49894
    andyh2tk
    Member

    what article? Theres no link.

    #1355
    dozer1
    Member

    Hi guys!

    I’ have now tried to read everywhere to find a decent answer on my question, but no luck.

    I am trying to install the bbpress in a subdir under my wp blog, but no matter what I do I keep getting the 404 not found when I try to run the /install.php

    I don’t know if my config.php is correct…

    <?php

    define(‘BBDB_NAME’, ‘*******’); //

    define(‘BBDB_USER’, ‘*******’); //

    define(‘BBDB_PASSWORD’, ‘*******’); //

    define(‘BBDB_HOST’, ‘localhost’);

    $bb_table_prefix = ‘bb_’;

    $bb->domain = ‘http://aagymruss.net/&#8217;;

    $bb->path = ‘/forum/’;

    $bb->name = ‘Åsane russen sin lekeplass’;

    $bb->admin_email = ‘yngve dot petersen @ gmail dot com’;

    $bb->mod_rewrite = false;

    $bb->akismet_key = false ”;

    $bb->wp_table_prefix = ‘wp_’; //

    $bb->wp_home = ‘http://aagymruss.net/&#8217;; //

    $bb->wp_siteurl = ‘http://aagymruss.net/&#8217;;

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

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

    ?>

    I really don’t know how much you guys can get out of this, but if there is more info you need, just say so.

    Well, the question is; why cant i get this thing to install?

    Is there anything I have to put in to make it work with my wp installation?

    In advance: thank you! (And sorry if my English isn’t to good:)

    #49893
    Trent Adams
    Member

    I have never tried what you are doing (in terms of this type of integration), but maybe this article by So10 might be something that can help in the meantime? If not, disregard ;)

    Trent

    #49892
    andyh2tk
    Member

    I got it right except for in k2 it looks really weird. Its all over the place. Look at thetechkid.com/bbpress to see whats wrong with it.

    #49891
    andyh2tk
    Member

    Austane, I use k2 and could you share your header and footer info with me?

    ~andyh2

    #54100
    so1o
    Participant

    a suggestion:

    why dont you integrate both the plugins into one. and drive the icons from the admin menu for the options.

    #52178
    linickx
    Participant

    I might be miss reading this, but I think I stumbled across this.

    #52177
    Null
    Member

    Yeah hmm was afraid of that. It’s part of a function I’ve made with a foreach etc etc

    There are 3 options:

    1) Request this as a new function/option in the next release of bbPress

    2) Make a new function :)

    3) I/ someone else makes the function when I/he/she has the time

    I will take a look at it tonight

    #1354

    Topic: Unique Style Sheet?

    in forum Themes
    macwise
    Member

    Hi all,

    I am currently configuring BBPress for my site at http://www.babyquestions101.com’s forum, and by the looks of it it’s very promising.

    I am trying to figure out if I can call a specific stylesheet for a specific page by making that call in the body page.

    For instance, I know how to call multiple stylesheets through header.php. However, I would like to be able to specify a stylesheet through a page like forum.php, so that it dynamically tells header.php to call the stylesheet specific (or unique) to that page. I want this so that I can lean up my code, instead of calling everything in one css file.

    #54090
    Trent Adams
    Member

    Ardentfrost you are doing a great job. Your plugins are a great addition to not only this community, but all users of bbPress. I would imagine that you will do great on these plugins and other additions.

    Trent

    #54089
    ardentfrost
    Member

    One day I plan to add options such as these to an admin interface, but for the time being, you just gotta do it by hand.

    Of course, the trick to that is pulling out the information. get_profile_info_keys seems like it should pass you back an array of those values and you can just get them out of there, except I haven’t attempted to use that function and since it doesn’t ask for any information about the user you’re interested in, I don’t know how to tell you to get the information from that seemingly useful function.

    Which takes us to my personal favorite method: SQL commands. You’d be searching through the table bbprefix_usermeta (mine is bbpress_usermeta). Setup a SQL call like this:

    $result = $bbdb->get_results("SELECT * FROM $bbdb->usermeta WHERE user_id = $id");

    where $id is the id of the person you’re interested in and $result is the object that the person’s data will be loaded into.

    Then to access the information, you’d simply call it like this (like, for the example of where the user is from):

    $result->from

    You can echo that to have it printed or whatever you want done with that information. A quick glance at the database tells me that you can call this information (and what it means):

    “from” = location

    “occ” = occupation

    “interest” = interests

    “bbpress_title” = the title, custom or default

    You’d have to make a subroutine in bb-memberlist.php in the my-plugins directory to get $result, then use the information in memberlist.php.

    Sorry I can’t do more for you than this, but I used information from the table I had already gotten results from for ease in my current release. I could have added more stuff, but then some people might not have wanted them plus it’s easy to add or subtract from information users put in when they sign up and blah blah blah…. one day I’ll make it nice via the admin panel, but for now, good luck :)

    #54116
    spencerp
    Member

    I’ve been running .80 alpha for a while now, and totally forgot that the forums couldn’t be deleted in the /bb-admin/ lmao.. Aww, the wonderful feeling you get from running the bbPress trunk/ (files) live.. It’s so much nicer to be able to delete forums via the bbPress control panel, rather then going into the stupid phpMyAdmin .. whee..

    spencerp

    #1353
    master5o1
    Participant

    Whats up with the -1 years freshness on the bbpress forum (my one?)

    How can I change it to like 0 hours or something like that?

    #1352
    master5o1
    Participant

    How do I delete one of the forums that I have made in bbPress?

    I just can’t find where it is possible…I guess I could manually in the DB…but that’s risky isn’t it :S

    #54001
    Null
    Member

    Hmm it should have entries, something went wrong there.

    If you can, delete the bb_menu table.

    Then in phpMyAdmin:

    CREATE TABLE bb_menu (

    set varchar(50) NOT NULL default '',

    item varchar(50) NOT NULL default '',

    page varchar(50) NOT NULL default '',

    location varchar(50) NOT NULL default '',

    order int(9) NOT NULL default '0',

    PRIMARY KEY (set,item)

    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

    If your current bb_menu already has these values, you wont have to recreate it. But better save then sorry…

    Now fill the table:

    INSERT INTO bb_menu VALUES ('active', 'Forums', 'index.php', 'front-page', 0)

    INSERT INTO bb_menu VALUES ('active', 'Search', 'search.php', 'search-page', 1)

    INSERT INTO bb_menu VALUES ('available', 'Statistics', 'statistics.php', 'stats-page', 0)

    Now refresh the admin page. This should fix it. Not sure if I gave the right syntaces to use in phpMyAdmin, but you get the idea :)

    ps. If you didn’t use the bb_ prefix, you should change this…

    ps2. And leave out the @

    ps3. This is the beta so it has some errors that are fixed in the final release (after bbPress 0.8 is out)

    #53999
    Null
    Member

    Where did you install it? Did you install more plugins? Which version of bbPress are you running? Is the bb_menu table created? Did you refresh the page and still get the error? What MySQL/ php version do you use?

    I need more info :)

    #49890
    macwise
    Member

    I seem to be having a similar problem here, but when I add:

    require_once('/wp-content/themes/BabyQuestions101/header.php');

    in my bb config.php file, I get this error:

    Warning: main(/wp-content/themes/BabyQuestions101/header.php) [function.main]: failed to open stream: No such file or directory in path/to/babyquestions101.com/forum/config.php on line 3

    Fatal error: main() [function.require]: Failed opening required ‘/wp-content/themes/BabyQuestions101/header.php’ (include_path=’.:/usr/local/lib/php’) in /path/to/babyquestions101.com/forum/config.php on line 3

    (the require_once code is just below the php tag, like this:

    <?php

    require_once('/wp-content/themes/BabyQuestions101/header.php');

    // ** MySQL settings ** //

    define('BBDB_NAME', '////'); // The name of the database...

    I can’t seem to make this error go away.

    Also, is it true that with bbpress .75 I now DO NOT need to add the following line to my config.php file?:

    define('WP_BB',true);

    Any help here would be appreciated.

Viewing 25 results - 62,676 through 62,700 (of 64,423 total)
Skip to toolbar