Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 31,176 through 31,200 (of 32,453 total)
  • Author
    Search Results
  • #54054

    In reply to: 8.0

    flaerpen
    Member

    c’ mon then :D

    #54053

    In reply to: 8.0

    Null
    Member

    1 ticket left, release it!!! :D:D:D:D:D:D:D

    #54052

    In reply to: 8.0

    spencerp
    Member

    God, I hope so.. I’m getting tired of constantly adding the Forum Categories enhancement to the latest SVN trunk files, and then uploading them again lmao.. =P

    I think I’ll just wait now, until .80 is full-blown released, and you’re done doing .80alpha SVN commits hahaha. /Me thinks: dang! It’s planned to go into 1.0 anyway, so.. I guess I’ll have to worry about that transition or whatever then too. Oh well..

    spencerp

    #1350
    drmike
    Member

    Greets:

    I think I’ve noticed with bbpress is how it handles tags made after a post is created. We have someone over at the wp.com forums who goes back through and adds tags into the threads which is cool. The only issue is that she (I have a feeling I know who it is) puts everything into the line at once. For example she’ll add in:

    blogdesk offline blogging tool

    into the line of a thread that’s already in existance and then hit enter. All that goes in as one tag.

    Does the software do that on purpose or is that just an oversight?

    Thanks,

    -drmike

    #53762
    flaerpen
    Member

    okey, I tried that but I cant get it work. I just copied the code you wrote and changed the domain. For the moment I’m testing my forum in my localhost. This is the code I use:

    $bb->usercookie = 'wordpressuser';

    $bb->passcookie = 'wordpresspass';

    $bb->cookiedomain = 'localhost';

    $bb->cookiepath = '/';

    I can add that I’m a totally newbie to cookies!

    #53997
    Null
    Member

    :D class class class

    #53996
    ear1grey
    Member

    Cool! So now the CSS fix? :D

    #53995
    Null
    Member

    ps ow and ear1grey, thx for your help and patience :)

    #53994
    Null
    Member

    I FINALLY fixed it!! YESSSSSSSSSSSSS

    What did I do? Well simply replace bb_get_location output with: front-page.

    It even doesn’t chance the page id :D

    Perhaps it’s a “dirty” fix, but it works:

    function get_bb_menu() {

    global $bbdb;

    $pemal = get_bb_location();

    $pemal = str_replace('topic-page', 'front-page', $pemal);

    $pemal = str_replace('profile-page', 'front-page', $pemal);

    -normal code goes here-

    Going to do some more testing and then it’s ready for release!

    #53760
    flaerpen
    Member

    where do I put the code? In my bb-config or wp-config or somewhere else?

    #954
    tominated
    Member

    Is it possible to integrate a bbpress forum into an existing site (so i don’t have to mess around with making a theme for bbpres) by using php functions? I am not very good (that is an overstatement) at php. I followed a tutorial that let me integrate a wordpress blog into my site, and this is the code it gave me

    <?php define('WP_USE_THEMES', false);

    require('wordpress/wp-blog-header.php'); ?>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head></head>

    <body>

    <div id="stage">

    <div id="sidebar">

    <?php if ( !function_exists('dynamic_sidebar')

    || !dynamic_sidebar() ) : ?>

    <h3>Categories</h3>

    <div id="blog-categories">

    <ul>

    <?php

    list_cats(FALSE, '', 'ID', 'asc', '', TRUE, FALSE, TRUE,

    TRUE, TRUE, FALSE, FALSE, '', FALSE, '', '', '', TRUE);

    ?>

    </ul>

    </div>

    <br />

    <div id="blog-archives">

    <h3>Archives</h3>

    <ul>

    <?php get_archives('monthly', '', 'html', '', '','TRUE'); ?>

    </ul>

    </div>

    <hr />

    <br />

    <div id="rss-links">

    <h3><a href="<?php bloginfo('url'); ?>?feed=rss2">RSS feed</a></h3>

    </div>

    <?php endif; ?>

    </div>

    <div id="content">

    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <div id="unique-entry-id-<?php the_ID(); ?>" class="blog-entry">

    <div class="blog-entry-title"><?php the_title(); ?></div>

    <div class="blog-entry-date"><?php the_time('Y-m-d G:i'); ?>&nbsp;|

    <span class="blog-entry-category"><?php the_category(', '); ?></span>&nbsp;|

    <span class="blog-entry-permalink"><a href="<?php the_permalink(); ?>">Permalink</a></span>&nbsp;|

    <span class="blog-entry-language">

    <?php if(function_exists('lp_other_langs')) {

    //display existing language versions of the post

    lp_other_langs(' ','', '', '', '');

    }?></span>

    </div>

    <div class="blog-entry-body"><?php the_content(); ?></div>

    <div class="blog-entry-comments">

    <?php edit_post_link(__('Edit This')); ?> |&nbsp;

    <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)'), "",

    __('Sorry, comments are closed for this item.')); ?>

    </div>

    </div>

    <?php comments_template(); ?>

    <?php endwhile; ?>

    <?php else : ?>

    <h2><?php _e('Not Found'); ?></h2>

    <p><?php _e('Sorry, but no posts matched your criteria.'); ?></p>

    <form method="get" class="searchform" action="<?php bloginfo('home'); ?>/">

    <div>

    <input type="text" size="20" value="<?php echo wp_specialchars($s, 1); ?>" name="s" class="s" />

    <input type="submit" class="submit" value="<?php _e('Search'); ?>" />

    </div>

    </form>

    <?php endif; ?>

    <div style="text-align:center;">

    <?php posts_nav_link(' — ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>

    </div>

    </body>

    what would i have to do to get bbpress integrated into my site? I heard somewhere that the function names are very similar to wordpress, so what code would i put in to get the forum categories then the recent posts, etc.?

    #53759
    Trent Adams
    Member

    The cookies part can be daunting in the beginning to add, but once you figure it out, it is not so bad. Sometimes placing in the cookie path isn’t enough and you have to add the locations of the cookies and the names. Let me give you some examples:

    My blog is in a couple different folders so I use this:

    $bb->usercookie = 'wordpressuser';

    $bb->passcookie = 'wordpresspass';

    $bb->cookiedomain = '.onvertigo.com';

    $bb->cookiepath = '/';

    Trent

    #53614
    ateale
    Member

    Trent you are a guru!

    It works now! Thankyou so so much!

    Wahoo!

    You are a legend!

    Cheers

    Adam

    require_once

    ('/home/lumanati/www/blog/wp-blog-header.php');

    #54078
    Trent Adams
    Member

    I would request that from the author in that plugin post that you referenced above. I would imagine that it wouldn’t be too hard to change the code if you know how the plugin works!

    Trent

    #54085

    In reply to: Post without acoount

    Trent Adams
    Member

    Currently annoynmous posting isn’t in the cards, but maybe a plugin will surface now that in the next version to be released, the login code is pluggable….

    Trent

    #53613
    Trent Adams
    Member

    It seems it isn’t finding the file…..try:

    require_once

    ('/home/lumanati/www/blog/wp-blog-header.php');

    that or:

    require_once

    ('home/lumanati/www/blog/wp-blog-header.php');

    Trent

    #51342
    sbpmedia
    Member

    I’ll try to add TinyMCE in the morning.

    I hope i can figure it out :-)

    #53612
    ateale
    Member

    Hi Trent thanks for your help!

    i made those changes but still seem to get this error:

    Warning: main(www/blog/wp-blog-header.php) [function.main]: failed to open stream: No such file or directory in /home/lumanati/www/blog/bbpress/config.php on line 3

    Fatal error: main() [function.require]: Failed opening required 'www/blog/wp-blog-header.php' (include_path='.:/usr/local/lib/php') in /home/lumanati/www/blog/bbpress/config.php on line 3

    i have no idea!

    thanks for your help so far!

    Adam

    #54069
    baptiste
    Member

    I brain locked. bb_head is probably too late for this. Is there an equivalent of the ‘init’ hook for bbPress? In WordPress, that filter hook gets run after the environment initializes. That’s when the code I included would need to be run. I can’t seem to find an applicable filter hook called that early.

    #53993
    ear1grey
    Member

    Tip: you really need to stop repeating the errors that have been debugged for you.

    You cannot do $rw["location"] == get_bb_location() because you are comparing (on the left hand side of the ==) the name of a function with (on the right hand side of the ==) the result of a function.

    You could do:

    if ( call_user_func($rw["location"]) == get_bb_location() ) {

    // do something

    }

    But that’s probably not going to achieve what you’re trying to do because it’s going to depend on what the function actually does (whose name is stored in $rw[“location”]) … so if it returns a boolean value, then it’s not going to work because get_bb_location() returns a page name.

    Incidentally the whole idea of storing the name of the function in the database is slightly more black belt than “noob” territory. You’d be better off storing a flag in the DB then translating the flag into a function name in the your code, because it’s more easily traced.

    Isn’t there a simpler way?

    Probably – describe in words (not code) exactly what you hope to achieve in the piece of code that is not working (this is often a healthy trick when something doesn’t work – by articulating the problem you can often recognize if you’ve overlooked something obvious or better in the design).

    #54068
    baptiste
    Member

    Would the solution be to execute a stripslashes_deep on GET, POST, etc if WP_BB is true? Seems kinda dangerous – but bbpress doesn’t expect this in a non-integrated environment, so undoing what wp-settings.php does (which gets run when you include wp-config to get the WordPress API) seems harmless enough.

    Maybe something along the lines of:

    function bb_undo_wp_slashes() {

    $_GET = stripslashes_deep($_GET );

    $_POST = stripslashes_deep($_POST );

    $_COOKIE = stripslashes_deep($_COOKIE);

    $_SERVER = stripslashes_deep($_SERVER);

    }

    and call that as a filter for bb_head?

    if (defined('WP_BB') && WP_BB) add_action('bb_head', 'bb_undo_wp_slashes');

    I think bb_head is called after the environment is setup.

    I may give this a try. Thoughts from developers who know more about bbPress than I?

    #54067
    baptiste
    Member

    Weird. I have magic quotes off. However, I notice that wp-settings adds slashes to EVERY request in wp-settings:

    // If already slashed, strip.

    if ( get_magic_quotes_gpc() ) {

    $_GET = stripslashes_deep($_GET );

    $_POST = stripslashes_deep($_POST );

    $_COOKIE = stripslashes_deep($_COOKIE);

    }

    // Escape with wpdb.

    $_GET = add_magic_quotes($_GET );

    $_POST = add_magic_quotes($_POST );

    $_COOKIE = add_magic_quotes($_COOKIE);

    $_SERVER = add_magic_quotes($_SERVER);

    Is bbpress not expecting this? This might explain the double slashing even if magic quotes is off (I checked my php.ini – it is off)

    #1345
    baptiste
    Member

    So I’ve been digging further into the strange behavior I’ve had with slashes in posts AND with HTML tag attributes being yanked out.

    It’s all related. Apparently, there is some type of problem where slashes get added TWICE when the WP intergation is on. This is why slashes start showing up everywhere and why kses fails.

    I finally discovered that even though the stripslashes filter is called before bb_filter_kses, there are still slashes in front of the quotes of the attributes. So they get tossed.

    So I took out all the stripslashes hacks I had put into the title and post routines and called stripslashes TWICE as a pre_post filter. Voila – attributes are preserved.

    add_filter('pre_post', 'stripslashes', 40);

    add_filter('pre_post', 'stripslashes', 45); // 2nd Time

    I also added this little section in default-filters.php:

    // Slash problems when integrated with WordPress

    if (defined('WP_BB') && WP_BB) {

    add_filter('post_text', 'stripslashes');

    add_filter('get_topic_title', 'stripslashes');

    add_filter('get_bb_title', 'stripslashes');

    add_filter('edit_text', 'stripslashes');

    }

    And it stripped out the slashes in titles, browser bars, posts, edit screens, etc. (Note there is a missing semi-colon after the sort_tag_heat_map line – you need to add on if you put this at the end)

    This is still a hack. I don’t have magic quotes on. I still need to dig and find out why there seems to be alternate behavior when wordpress is integrated or not. Maybe WordPress is turning on magic quotes and bbPress doesn’t expect it to be on?

    Still digging.

    #53992
    Null
    Member

    That is about right. I suggest you install the beta plugin and take a look, cause I am a noob and perhaps we are talking about the same, but in other words :)

    I am also looking for alternitive solutions like:

    Isn’t there a simpler way? Like always underline Forum unless $rw == get_bb_location()

    So if current isn’t present in the li list, uinderline Forums. If this is possible, it would solve all problems :)

    And:

    replacing/filtering bb_get_location so when it says: topic-page it will be filter to: front-page (and the forum link will be underlined.

    Well in theory… :)

    #53991
    ear1grey
    Member

    Can you confirm what I asked earlier about the content of $rw[“location”]?

    If that is what you’re doing then modify this example:

    <?php

    function exampleOne() {

    return "bb";

    }

    function exampleTwo() {

    return "press";

    }

    $rw["one"] = "exampleOne";

    $rw["two"] = "exampleTwo";

    $switchOne = call_user_func($rw["one"]);

    $switchTwo = call_user_func($rw["two"]);

    echo($switchOne);

    echo($switchTwo);

    ?>

    Obviously you don’t need the example methods, but just use call_user_func on the name of the method you’re pulling from the DB.

Viewing 25 results - 31,176 through 31,200 (of 32,453 total)
Skip to toolbar