Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 62,351 through 62,375 (of 64,452 total)
  • Author
    Search Results
  • #54271
    spencerp
    Member

    Okay, I just SVN-ed the forums… :D Now, before I go any farther! I’m going to make the “Gathering” theme for bbPress, on the latest Trunk files… Which should still be ok for those using .80 and .81

    I’m going to start a new post about that “Gathering” theme, after posting this… so.. ;) Thanks again Sam, for the tips, and the awesome Forum Category enhancement. ;):)

    spencerp

    #54270
    spencerp
    Member

    To make this easier on me, I’m just going to backup ALL the current files for my forums, including plugin files, theme files, and whatever else..

    Wipe it all out, except for the themes, config.php, .htaccess, and whatever, do that SVN method I mentioned above, try and apply the Forum Cat patch, run upgrade… Then, download all the latest versions of those plugins, go through those files, and adjust accordingly..

    Then, the themes as needed.. because I’m on Dreamhost servers, some plugin files were a pain in the arse sigh… had to do special “tweaks” to the files…. Then, make a “not-so-perfect-release” of the Gathering theme, for bbPress…

    Then, and then, and then some more.. lmao.. Always something .. LOL Hmm, I could probably shoot for another 3 days staying awake, not getting any sleep.. whee!! [Grabs another pepsi, because that’s my go-go juice, and gets back to work again!]… .

    spencerp

    #54269
    spencerp
    Member

    Oh wait, you’ll have to forgive me lol, I’m riding on 3 days without sleep, sigh. I forgot you mentioned a quick “how-to” in your comment over here on trac:

    https://trac.bbpress.org/ticket/520#comment:30

    spencerp

    #54268
    spencerp
    Member

    Hi Sam, I already got SVN access on my spencerp.net domain. :) I just hadn’t did any SVN-ing on the WP blog itself, and the bbPress forums though. I manually uploaded the files, ran install, upgrades when needed..

    But, I guess I could though. Just make my way to the forums/ directory, and do a SVN checkout for bbPress right? Here’s how I usually do my SVN checkouts, into a specific folder:

    svn co http://svn.automattic.com/bbpress/trunk .

    Once I’m done with that, then run the upgrade, right? Then worry about applying the patch for the Forum Categories?

    I never applied a “patch” via the SVN way before, I just want to know step by step, briefly even, how-to do this… Do I just slap in the patch URL.. or.. ? Thanks in advanced…

    spencerp

    #54337
    chrishajer
    Participant

    Kirkk: that is what the plugin is supposed to do, I think: turn the slashes around. When you pasted the code into that file, did it have line numbers? You should use the plain text version here:

    https://trac.bbpress.org/attachment/ticket/575/path-to-url.2.php

    Is the my-plugins directory readable (0755 permissions) and the file is readable by the webserver (0644 permissions at least)?

    Also, I don’t know the answer to this question, but should it have the .2. in the file name, or should the file be named path-to-url.php? I don’t know if the filename matters at all. I know there was a version one without the 2 in the filename.

    Keep plugging away. You’ll get it.

    chrishajer
    Participant

    flatworm, also, you can contact me via email and I will help get you running off-list. See my profile, go to that website and follow the the “contact us” link and email to support. I will help you out. You don’t need to get into the development of bbPress.

    Also, you’re not experiencing ‘errors with graphics’ you’ve got a problem with the path to your stylesheet. That’s all. That may very well be a bug, but all software has bugs. Don’t just trade one problem for another.

    vanilla support forum: http://lussumo.com/community/9/

    Also, did you ever look in a rendered page (in your browser) for the stylesheet line? If you do see that (use ‘view source’ or something similar in your browser when you pull up a page similar to the one you took a screenshot of) post the information from that stylesheet line. My guess is that the slashes are backslashes.

    Also, I never understood the point of installing community/forum software on localhost, unless it’s just for testing. Even if that’s the case, I prefer to test in the environment where it will be live so you’re not solving problems that won’t ever happen once it’s live, and you won’t experience new problems that you didn’t anticipate.

    But, contact me off-forum and I will help you.

    #54916
    chrishajer
    Participant

    Sorry, Sam. I am Linux on the desktop and Linux on the webserver. I supposed I could just try it too. I guess the issue is that now that I’ve already install bbPress and updated it once, do I need to start with a new checked out version and make my changes manually to that?

    Thanks,

    Chris

    Trent Adams
    Member

    I understand your frustration on this issue flatworm, but as ChrisHajer has already told you, there has been some issue with installating bbPress on localhost. Go through the tickets that were linked above so you can get a better idea of the issues and maybe try this. Create a plugin called url-fix.php and put in the information from the link from this post:

    https://bbpress.org/forums/topic/730?replies=9#post-4797

    Trent

    #54691
    nickbrady
    Member

    Hi,

    I am writing a plugin for BBPress that shows the latest posts from WP (if WP and BBPress are sharing the same database). It’s still in development, but it already works, you just have to write


    <?php wp_show_posts(\"\" ); ?>

    in any BBpress template.

    As you will see, it works, but it has a problem: it does not show WP’s pretty URLs. I would like to call WP’s get_permalink() function, but it uses many WP functions that are not available when you’re in BBPress.

    Any advice on how to do this? Or maybe it would be easier to read WP’s RSS?

    Thanks!

    Here goes the code of the plugin so far (if you don’t care about pretty permalinks, you can use it, it works):


    <?php
    /*
    Plugin Name: WP Posts
    Plugin URI: http://thesandbox.wordpress.com
    Description: Get a list of WordPress posts from your bbPress (needs to be integrated with WP, sharing database)
    Author: Nick Brady
    Version: 0.1
    Author URI: http://thesandbox.wordpress.com

    Install Instructions:
    - If you don't have a /my-plugins/ directory in your bbpress installaltion, create it on the same level as config.php.

    - Check out: https://codex.wordpress.org/Template_Tags/get_posts

    */

    function wp_get_posts($args) {
    global $bbdb, $bb;

    parse_str($args, $r);
    if ( !isset($r['numberposts']) )
    $r['numberposts'] = 5;
    if ( !isset($r['offset']) )
    $r['offset'] = 0;
    if ( !isset($r['category']) )
    $r['category'] = '';
    if ( !isset($r['orderby']) )
    $r['orderby'] = 'post_date';
    if ( !isset($r['order']) )
    $r['order'] = 'DESC';

    $now = bb_current_time('mysql');

    $posts = $bbdb->get_results(
    \"SELECT DISTINCT * FROM \".$bb->wp_table_prefix.\"posts \" .
    ( empty( $r['category'] ) ? \"\" : \", \".$bb->wp_table_prefix.\"post2cat \" ) .
    \" WHERE post_date <= '$now' AND (post_status = 'publish') \".
    ( empty( $r['category'] ) ? \"\" : \"AND \".$bb->wp_table_prefix.\"posts.ID = \".$bb->wp_table_prefix.\"post2cat.post_id AND \".$bb->wp_table_prefix.\"post2cat.category_id = \" . $r['category']. \" \" ) .
    \" GROUP BY \".$bb->wp_table_prefix.\"posts.ID ORDER BY \" . $r['orderby'] . \" \" . $r['order'] . \" LIMIT \" . $r['offset'] . ',' . $r['numberposts'] );

    return $posts;
    }

    function wp_show_posts( $args ) {
    global $bb;
    $posts = wp_get_posts( $args );
    foreach( $posts as $post ) {
    echo \"<li>n\";
    echo \"<a href='\".$bb->wp_home.\"?p=\".$post->ID.\"'>\";
    echo $post->post_title;
    echo \"</a><br/>n\";
    echo \"</li>n\";
    }
    }
    ?>

    flatworm
    Member

    I do not know php and html. I’ll search for this code line usind WIN. search to find <link rel=\"stylesheet\"

    I really do not want to be involved in the process of development of bbPress.

    All this really makes me think of using Vanilla.

    http://www.getvanilla.com

    Vanilla looks more professional and developed, but it is 50% bigger in size.

    Code is poetry, equaly unconceptional to everyone.

    #54881

    In reply to: Template Tags

    fel64
    Member

    Page numbers – say a thread has more than 30 replies and falls onto the second page, it’s very irritating having to click the thread’s name and then click again to get to the second page. Next to the page’s name you should simply have the page numbers displayed and clickable, hopefully in a smart way (say showing the first few and the last few). You can see it on this forum, too: say I want to read the second page of posts in the Plugin: Forum Restriction thread, I have to click on the name and then on the second page. Is there maybe even a plugin to list the page numbers next to the page name in the thread listing?

    In WordPress you have hooks that let you take actions through your plugin when they’re called, right? I guess bbPress does the same. I specifically want to create an Identicon avatar on registration – it’s not essential, just something I’d like to do. How do I register my plugin to work on that hook, and what hook do I use? Just a list of hooks would be helpful. :)

    #54929
    Sam Bauers
    Participant

    And the feature has been gone since earlier than 0.8 (0.75 maybe?). There is nothing in the support-forums plugin that I can think of that won’t work with 0.8.1

    #54915
    Sam Bauers
    Participant

    What operating system?

    #54928
    AphelionZ
    Participant

    Yeah, taking it out was a good idea. My forum doesnt use it and making it something that isnt in the core code makes it more useful as a ‘general’ forum right out of the box and not just a forum software for tech support.

    chrishajer
    Participant

    That is unstyled because the path to the style.css file is incorrect. Can you look at the source of that html page and find the line that begins:

    <link rel="stylesheet"

    My guess is that the path to your stylesheet is incorrect. There have been a couple threads about slashes being changed to back slashes improperly:

    https://bbpress.org/forums/topic/700?replies=28

    Even more relevant for localhost:

    https://bbpress.org/forums/topic/730?replies=9

    Here is a trac ticket for the backslash issue:

    https://trac.bbpress.org/ticket/594

    HTH

    edit: there will not be slashes before the double quotes in your html source around stylesheet , unlike this post. It’s a bug they’re working on.

    #49932

    In reply to: En español

    lonemadmax
    Member
    #54300
    lonemadmax
    Member

    From all those links, I could only get the es_AR one (I’m having some strange problems with my DNS, so it may be just me). So here is my es_ES version.

    #54970
    ear1grey
    Member

    In the long run you’ll keep users more friendly if you don’t dictate how they browse. Most people (even my mum) know about tabbed browsing now and know to middle click to open a link in a background tab.

    Also, FWIW, target is not (and never has been) a standard attribute of HTML4 or XHTML, so if you want your pages to validate, avoid it.

    Having said that… :) The Google Analytics plugin for BBPress filters the content and adds stuff to the anchors, so that should help:

    http://boakes.org/download/googleanalytics.txt

    flatworm
    Member

    I am using xampp&mysql

    localhost with no outlet to real web

    database name is bbpress

    I installed it, but I can’t get graphics.

    It even shows forums.

    #1476
    macwise
    Member

    Well, here I go again…

    Anyone know the way I might call in the wordpress Profile fields from a users Profile page and display/edit those in the bbpress profile.php and edit-profile.php pages?

    Thanks!

    #54334
    chrishajer
    Participant

    There is no activation required. Any .php file in the my-plugins folder will just work.

    So says Trent (and I believe him):

    https://bbpress.org/forums/topic/714?replies=9#post-4462

    #54332
    kirkk
    Member

    I have created a directory named “my-plugins” in the bbpress root directory and put the file named “path-to-url.2.php” into that directory. I think i have to activate that plug-in but i dont know how to do it ? Could you please help me…

    Note: I checked config file and other files like it, there seems to be no problem with the slashes…

    Thanks for your help…

    #54956
    fel64
    Member

    You have to add these lines to your bbPress config.php file – not sure who posted it, but it’s not my idea.

    //your try to sync cookies
    $bb->cookiedomain = '.myurl.com';
    $bb->cookiepath = '/';

    You also have to edit WP core files I think.

    wp-settings.php line 190
    FROM
    define('COOKIE_DOMAIN', false);
    TO
    define('COOKIE_DOMAIN', '.myurl.com');

    I’ve got it set up so at http://www.loinhead.net (and forums.loinhead.net) and it works nicely. :)

    #54927
    chrishajer
    Participant

    I think this feature was removed from the core and added as a plugin:

    https://bbpress.org/plugins/topic/16?replies=1&more=1

    Not sure from the release notes if this works with .81 or not, but I imagine the functionality will still be there, just in plugin form, not in the core. I think there were more requests for it to be out than in.

    #1472
    macwise
    Member

    Does anybody know how/where the cookie domain for bbpress is stored? I am not talking about the siteurl or home…I’m looking for the value “Website” in the cookie table in Safari’s preferences – > Cookies window, or the value “domain” in Firefox’s Preferences -> Domain field. I’m having conflicts with WordPress’ integration when I have a user create new password etc. in bbpress. I need to assign the cookie website or “domain” to be .myurl.com instead of http://www.myurl.com.

Viewing 25 results - 62,351 through 62,375 (of 64,452 total)
Skip to toolbar