Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 16,451 through 16,475 (of 26,846 total)
  • Author
    Search Results
  • #37686
    bonnie808
    Member

    I’ve seen a few topics addressing this issue but none of them could fix it or the post was 4 years old!

    I installed wordpress 3.1 in my main directory

    I installed BBPress 1.0.3 in a folder in my main directory

    – Both use the same database

    BBPress worked perfect and I could access the admin dashboard.

    I used the bbpress dashboard to integrate WP.

    – mapped user roles (Key master – Administrator etc…) then saved.

    – filled out the other fields correctly and saved.

    Right after i saved it i was booted out of the admin and could not log-in again.

    I tried using the bbpress and WP login/password, both did not work.

    I compared the keys in both configs and they were correct

    I compared the salts from my db to my wp-config and they were correct

    I cleared my browser cache and that didn’t work

    Since it seems like an internal scripting bug, How do i fix this manually???

    Any help is greatly appreciated!

    Mahalo in advance!

    #37680
    amylove
    Member

    I just installed the Admin Add User plug-in. When I go to Add User, I get an error message that a file is missing: bb-plugins/admin-add-user.php on line 15. Line 15 is this: require_once( BB_PATH . BB_INC . ‘registration-functions.php’);

    I cannot find the registration-functions.php anywhere. What am I missing?? I’m running bbPress 1.0.2. I specifically DO NOT want to integrate users with WordPress users.

    Thanks!

    BDA4
    Member

    Hello, I’ve been struggling 8 hours on this and I would appreciate any help :)

    I’ve researched this high and low but cannot find an answer.

    Problem: At STEP 2 of bbpress installer I try to access my wp-admin page for the requested Salts, but lo and behold – I’m locked out of wp-admin! I am shown a blank page.

    WordPress and bbpress downloads share the same mysql database. bbpress is on same level as wp-admin — eg. mysite.com/forums. (see: https://picasaweb.google.com/andrews.bda/DirectoryBbpress# )

    Why would my wp-admin lock me out during the bbpress installation?

    Thanks in advance for any help!

    ~BDA

    WP 3.1

    bbpress 1.0.3

    dreamhost

    (((As an aside, maybe this has bearing on my problem….I did not have any auth or salt keys located within my wp-config.php file after dreamhost one click install. I had to manually copy and paste from wp-configsample.php!)))))

    #37674

    I just created a cool video of bbPress commits since 2005 – bbPress Visual Roadmap

    Inspired by the WordPress Visual Roadmap

    azuagarg
    Member

    Hello,

    This simple use-case is not documented anywhere … how can I add a vanilla simple forum to my wordpress hosted blog web site?

    TIA,

    Best regards,

    Giovanni

    #95033
    Anonymous User 7670885
    Inactive

    @tieptoep: i’ve a login page (maked for bbpress) but it point to: http://localhost/wordpress/forum/login/ (this is a subpage of forum) instead meta link to: http://localhost/wordpress/login/ (404 – not found) :/

    Anyway, with bbpress login widget is ok, thanks :)

    Edit: i’ve put in top level all subpages and now also point 2 workfine (i’ve simple maked a custom menu to have all page ordered in “forum” menu link) ;)

    #99659
    alexchenco
    Member

    Try this:

    – You first have to start the WordPress Loop

    – Then call the get_template _part() function to get the forum template.

    <?php
    /*
    Template Name: Forum
    */
    @ePilipovic

    /**
    * @package WordPress
    * @subpackage Default_Theme
    */

    get_header(); ?>

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

    <div id="forum-front" class="bbp-forum-front">
    <div class="entry-content">

    <?php the_content(); ?>

    <?php get_template_part( 'loop', 'bbp_forums' ); ?>

    <?php get_template_part( 'form', 'bbp_topic' ); ?>

    </div>
    </div><!-- #forum-front -->

    <?php endwhile; ?>

    <?php get_footer(); ?>

    #104759
    alexchenco
    Member

    Try this:

    – You first have to start the WordPress Loop

    – Then call the get_template _part() function to get the forum template.

    <?php
    /*
    Template Name: Forum
    */
    @ePilipovic

    /**
    * @package WordPress
    * @subpackage Default_Theme
    */

    get_header(); ?>

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

    <div id="forum-front" class="bbp-forum-front">
    <div class="entry-content">

    <?php the_content(); ?>

    <?php get_template_part( 'loop', 'bbp_forums' ); ?>

    <?php get_template_part( 'form', 'bbp_topic' ); ?>

    </div>
    </div><!-- #forum-front -->

    <?php endwhile; ?>

    <?php get_footer(); ?>

    #37645
    ePilipovic
    Member

    How can i add a custom page on wordpress theme with bbPress? Is there any function to call?

    example link: http://img34.imageshack.us/img34/9774/bbpress.png

    <?php

    /*

    Template Name: Forum

    */

    /**

    * @package WordPress

    * @subpackage Default_Theme

    */

    get_header(); ?>

    —->>> What to put here to show my bbPress forum?

    <?php get_footer(); ?>

    #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?

    ePilipovic
    Member

    Hello,

    Is there anyway that i add a link to my navigation bar with bbPress that’s opening in the same page like wordpress with sidebars and all other things around.

    Example link:

    http://img34.imageshack.us/img34/9774/bbpress.png

    #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 );
    }
    ?>

    alexchenco
    Member

    I would like to know how to start a custom bbPress loop to display the recent 5 posts of a certain forum (say Forum Test 1).

    In WordPress I create custom loops like this:

    `<?php $custom_posts = new WP_Query(); ?>

    <?php $custom_posts->query(‘post_type=bbp_topic&posts_per_page=5’); ?>

    <?php while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?>

    <div class=”block-2 border-top”>

    <h2><a href=”<?php the_permalink(); ?>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></a></h2>

    <?php the_excerpt(); ?>

    <p><?php comments_number(‘0 Replies’,’1 Reply’,’% Replies’); ?>.</p>

    </div>

    <?php endwhile; ?>`

    How to do what I mentioned above in bbPress 1.1?

    #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

    #95027
    Willabee
    Member

    @ Darkwolf.it

    1. A category can’t hold topics, its meant to only be a container of sub-fora.

    2. Don’t really know what you mean..

    3. Making a custom theme for a plugin, seems like a long shot. Especially since it won’t intergrate into your site and just takes it over.

    4. It’s in the settings (Settings > Forums).

    5. None yet, but since the topics are just custom posts, you could write up a script.

    6. As said many times before, it has a high priority, but don’t expect it to be done tommorow.

    @ Kasparas

    This topic is about all the info you’ll get. The plugin will be the same as the standard bbPress in the end.

    @ ALL

    I know all of you have been waiting for a good forum plugin for wordpress for a while, but don’t ask radical script changes or widgets in this stage. Just let them build a solid script and the custom stuff will come later.

    #99634
    drpjotr
    Member

    Hi

    I’ve just installed bbpress on a side with wordpress, and succeded!

    It was a bit complicated, and i went through installation procedure twice.

    I used this as a guide:

    http://wordpress.tv/2009/01/23/integrating-a-bbpress-forum-with-your-self-installed-wordpress/

    During the first (unsuccessfull) installation I installed bbpress in parallel to wordpress, ex:

    …/wordpress

    …/bbpress

    I experienced some of the same symptoms as mentioned above

    During the second installation (after dropping the bb_* tables using phpAdmin) i installed exactly like in the video, ie

    …/wordpress/forums

    And surprise!!! It works perfectly!

    Im not in a position where I can use more time exploring why this and not the other works, but someone might have an explanation.

    All the best and good luck

    #104734
    drpjotr
    Member

    Hi

    I’ve just installed bbpress on a side with wordpress, and succeded!

    It was a bit complicated, and i went through installation procedure twice.

    I used this as a guide:

    http://wordpress.tv/2009/01/23/integrating-a-bbpress-forum-with-your-self-installed-wordpress/

    During the first (unsuccessfull) installation I installed bbpress in parallel to wordpress, ex:

    …/wordpress

    …/bbpress

    I experienced some of the same symptoms as mentioned above

    During the second installation (after dropping the bb_* tables using phpAdmin) i installed exactly like in the video, ie

    …/wordpress/forums

    And surprise!!! It works perfectly!

    Im not in a position where I can use more time exploring why this and not the other works, but someone might have an explanation.

    All the best and good luck

    #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

    #95021
    tyskkvinna
    Member

    Sorry, just for clarity- does that mean that BBPress (plugin) will have a totally separate theme from the main WordPress install?

    I’m presently running a Buddypress + Multisite install and I know my theme situation is more complicated than most, but I’d like to be able to carry over the Buddypress things (like the admin bar). Is this something that will be too sticky?

    #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.

Viewing 25 results - 16,451 through 16,475 (of 26,846 total)
Skip to toolbar