Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 18,951 through 18,975 (of 32,505 total)
  • Author
    Search Results
  • #99636
    panosbax
    Member

    the only problem it seems is that i simply dont have “auth_salt” and “logged_in_salt” in my wp-admin/config.php in WordPress. which means I can’t add those values in integration which is why it wont stay logged on across WP/ bbpress. Can anyone explain what to do :/ or why it’s not there?

    #104736
    panosbax
    Member

    the only problem it seems is that i simply dont have “auth_salt” and “logged_in_salt” in my wp-admin/config.php in WordPress. which means I can’t add those values in integration which is why it wont stay logged on across WP/ bbpress. Can anyone explain what to do :/ or why it’s not there?

    #37639
    alexchenco
    Member

    I recently started using this WordPress PHP implementation of the Markdown http://michelf.com/projects/php-markdown/

    Right now it only supports Posts and Comments. Topics and Replies don’t get aprsed.

    This comes from markdown.php:

    # Post content and excerpts
    # - Remove WordPress paragraph generator.
    # - Run Markdown on excerpt, then remove all tags.
    # - Add paragraph tag around the excerpt, but remove it for the excerpt rss.
    if (MARKDOWN_WP_POSTS) {
    remove_filter('the_content', 'wpautop');
    remove_filter('the_content_rss', 'wpautop');
    remove_filter('the_excerpt', 'wpautop');
    add_filter('the_content', 'Markdown', 6);
    add_filter('the_content_rss', 'Markdown', 6);
    add_filter('get_the_excerpt', 'Markdown', 6);
    add_filter('get_the_excerpt', 'trim', 7);
    add_filter('the_excerpt', 'mdwp_add_p');
    add_filter('the_excerpt_rss', 'mdwp_strip_p');

    remove_filter('content_save_pre', 'balanceTags', 50);
    remove_filter('excerpt_save_pre', 'balanceTags', 50);
    add_filter('the_content', 'balanceTags', 50);
    add_filter('get_the_excerpt', 'balanceTags', 9);
    }

    How to modify the line above to be effective for Topics and Replies?

    #50402
    uxtremist
    Member

    WP 3.0 / BBpress “Bechet” version 1.0.2

    Inside /wp-includes/load.php I found this code:

    // If already slashed, strip.
    if ( get_magic_quotes_gpc() ) {
    $_GET = stripslashes_deep( $_GET );
    $_POST = stripslashes_deep( $_POST );
    $_COOKIE = stripslashes_deep( $_COOKIE );
    }

    So I made a BBpress plugin that (so far) works for me.

    /bbpress/my-plugins/stripslashes.php

    <?php
    /*
    Plugin Name: Strip Slashes
    Plugin URI: http://www.uxtremist.com/
    Description: Strips slashes from topics, tags and posts. Sort of.
    Author: Adam Braimbridge <adam@uxtremist.com>
    Version: 0.1
    Author URI: http://www.uxtremist.com/
    */

    // Make sure WordPress has been included
    if (function_exists('wp_head')) {
    $_GET = stripslashes_deep( $_GET );
    $_POST = stripslashes_deep( $_POST );
    $_COOKIE = stripslashes_deep( $_COOKIE );
    }
    ?>

    #99653

    In reply to: Password Protection

    mr_pelle
    Participant
    #104753

    In reply to: Password Protection

    mr_pelle
    Participant
    #64036
    sontru
    Participant

    Hey! I’ve now fixed my problem :)

    The system (Debian 6) was missing or had an old version of php5-gd installed. apt-get install php5-gd and restarting the apache2 server fixed the problem of the blank pages.

    Also these code changes by _ck_ helped to improve Avatar Upload:

    Delete avatar function: https://bbpress.org/plugins/topic/avatar-upload/page/5/#post-1093

    Make identicon function work: https://bbpress.org/plugins/topic/avatar-upload/page/5/#post-1096

    #95028
    Anonymous User 7670885
    Inactive

    @Willabee: thank’u very much (and sorry for my poor english) :)

    for n° 2 (i can try to best explain): if i have a theme in my blog (no twentyten) how i can use also for plugin? is there a guide for customize? atm i can use only bbPress (Twenty Ten)

    #97134
    arnodevries
    Member

    Wow, this did the trick for me. You made me a happy man :-)

    #102234
    arnodevries
    Member

    Wow, this did the trick for me. You made me a happy man :-)

    #95026
    Ryan Gannon
    Member

    Is it possible to use bbp_topic_content/bbp_reply_content as filter hooks? i.e.

    add_filter('bbp_topic_content', 'some_function', 5);

    #95025
    Anonymous User 7670885
    Inactive

    Some question:

    1) What is the difference between “forum” and “category”? :/

    2) How i can use a wp theme for plugin?

    3) Why don’t use a theme for plugin not related with wordpress (or simple try to use directly wp theme without customization)?

    4) How i can permit guest to post?

    5) Is there any way to “promote” a topic in home page (in blog)?

    6) Any eta to convert from bbpress standalone?

    Thanks in advance, DarkWolf

    #95023

    @Ryan – That’s what I was hoping to hear :)

    @tyskkvinna – It will rely on new individual template files to handle the bbPress specific bits, but otherwise it’s easily compatible with any theme available today.

    #91128
    Anonymous User 7670885
    Inactive

    I’ve make this with only one database (all 3 script in same database) but i don’t have found any way to convert a specific board (news board, atm used to publish article in home page with smf) in wordpress articles :/

    I can try with rss but with this i can’t import also reply.

    Any idea for this?

    #95018
    QuickD
    Member

    Thanks for responding looking forward to the official wordpress.org release of this software :)

    #99245
    Anonymous User 7670885
    Inactive

    Sorry for bump but is more important for me.

    I’ve converted my smf to phpbb3 to bbpress and now i want try to convert a specific board (News Board: 650 Posts | 206 Topics) in WordPress article (with all replies). Is there any way to make this (is the opposite of this topic request)? :/

    I’ve a valid smf+phpbb3+bbpress database in my local webserver and i can try to convert to other board/script if is necessary – i require to convert only this board in wordpress and all the rest of forum can remain intact.

    Thanks in advance, DarkWolf.

    #104345
    Anonymous User 7670885
    Inactive

    Sorry for bump but is more important for me.

    I’ve converted my smf to phpbb3 to bbpress and now i want try to convert a specific board (News Board: 650 Posts | 206 Topics) in WordPress article (with all replies). Is there any way to make this (is the opposite of this topic request)? :/

    I’ve a valid smf+phpbb3+bbpress database in my local webserver and i can try to convert to other board/script if is necessary – i require to convert only this board in wordpress and all the rest of forum can remain intact.

    Thanks in advance, DarkWolf.

    #37618
    Anonymous User 7670885
    Inactive

    I’ve try more time to recovery my password but when i click on link recovery i receive every time: You are not allowed to change your password.

    Now i’ve 3 account:

    http://bbpress.org/forums/profile/darkwolfit (new, with password);

    http://bbpress.org/forums/profile/darkwolf (old, without password);

    http://bbpress.org/forums/profile/dark-wolf (old, without password).

    If is possible, please, delete all and i’ll try to re-register just with “DarkWolf” ;)

    Thanks in advance and kind regards :)

    #99639

    It’s only code, so anything is possible. :)

    #104739

    It’s only code, so anything is possible. :)

    #70736

    In reply to: bbpress vs phpbb

    tepelstreel
    Member

    ‘PS: I forgot to check this thread in case there were replies, because I automatically get an email from every other forum I belong to. Old habits die hard. Agora has an automatic emailing function built in, it’s not a plug in. ;-)

    What’s so bad about installing that plugin? I am also used to phpbb and I once tried o work with joomla. I have to say, that I like WP more as a CMS (alhough it is none) because I’m simply too stupid for the Joomla stuff, and I have difficulties setting up phpbb. I will definitely give bbpress a try, if having to set up my next forum.

    #95015
    Laurens Offereins
    Participant

    Hey guys, two more questions for you awesome plugin builders:

    1. The user profile and the user edit profile link redirect to [root]/blog/forums/users but those pages don’t exist. The they should be without the ‘blog/’ (then it’s working correctly). Could it be an error in my setup or something else?

    2. The widgets (topics and replies) only show relevant items to the current page that is viewed. I.e. when I’m viewing the profile page of user X, the widgets only show topics and replies from user X. So the widgets are dynamic, but a little too dynamic in my opinion ;)

    Thanks for all the great work!

    #95011

    @alexchenco – Right now creating topics/replies from within wp-admin is in rough shape, and doesn’t work correctly. Debating on whether to fix or block for release.

    Thanks for kind words. Happy to have as many testers as possible. :)

    #37611
    panosbax
    Member

    I am having extreme trouble integrating my wordpress (v3.1):

    http://www.thesourcegaming.com

    with my bbpress which is at http://www.thesourcegaming/forums.

    When i go to settings –> word press integration –> I have a problem at:

    This must match the value of the WordPress setting named “auth_salt” in your WordPress site. Look for the option labeled “auth_salt” in this WordPress admin page.

    This must match the value of the WordPress setting named “secure_auth_salt” in your WordPress site. Look for the option labeled “secure_auth_salt” in this WordPress admin page. Sometimes this value is not set in WordPress, in that case you can leave this setting blank as well.

    This must match the value of the WordPress setting named “logged_in_salt” in your WordPress site. Look for the option labeled “logged_in_salt” in this WordPress admin page.

    The problem is I don’t see these option on my WordPress Admin page. Auth_salt, secure_aurth_salt, and logged_in_salt don’t exist on the page, I’ve looked 10000000 times.

    I got the plugin and added “define( ‘COOKIEPATH’, ‘/’ );” to my wp-config.php

    And lastly can anyone explain what exactly what this part means?:

    You will also have to manually ensure that the following constants are equivalent in WordPress’ and bbPress’ respective config files.

    WordPress bbPress

    AUTH_KEY <=> BB_AUTH_KEY

    SECURE_AUTH_KEY <=> BB_SECURE_AUTH_KEY

    LOGGED_IN_KEY <=> BB_LOGGED_IN_KEY

    Any help is appreciate. I’m getting really frustrated :/ trying to find what I can via google/ here.

    #95009

    can you please show where the code is wrong?

Viewing 25 results - 18,951 through 18,975 (of 32,505 total)
Skip to toolbar