Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 60,776 through 60,800 (of 64,515 total)
  • Author
    Search Results
  • #54756
    _ck_
    Participant

    bbPress’s auto-close tags is broken by default – though the code and filter is in there, it’s not passed correctly:

    add this to a plugin

    function force_balance_tags($text) {return balanceTags($text, true);}

    add_filter('pre_post', 'force_balance_tags');

    or if you don’t know how, use my tweaks plugin:

    http://ckon.wordpress.com/2007/07/12/bbpress-plugin-bb-tweaks/

    #56540

    In reply to: Strut Your bbPress!

    sailorman
    Member

    my forum about mini transat http://open650.ru/bbpress

    #59005
    Inquirer
    Member

    I was using WinSCP to connect my server via SSH.

    According to the WinSCP web site their SSH protocol core is based on PuTTY.

    I entered the command mysql -p in the command text box and clicked the Enter button

    It kept timing out.

    It is odd the WinSCP FTP client part of the software works fine.

    I installed PuTTY and I was able to login to my database and dropped the bbPress tables.

    I realize that the phpAdmin software provides a more user friendly interface to a MySql database.

    #59011

    In reply to: Punbb -> BBPress

    _ck_
    Participant

    Every time I see a conversion script I have to ask (and not necessarily in a negative way) “what made you decide to convert to bbpress?”

    There are several well developed forum programs that endusers have now made conversion scripts to bbpress and I just have to wonder why someone would take a working setup and covert it?

    #59025
    Trent Adams
    Member

    I have an idea Talbina. Post your work that you would like to have done in a new post with all your contact information and I will close the thread. That is often what happens over in the wp.org forums. We don’t want to have a job board here, so anyone interested can contact you to further discuss what you want.

    Trent

    #54755
    citizenkeith
    Participant

    Today, one of my users didn’t close his strong and em tags… which made the everything after his post bold and italic!

    If you update the plugin, you might want to consider auto-closing all bbcode tags. :)

    talbina
    Member

    Hello,

    I have some paid work that i want done, and what i see is people are told to post here http://comox.textdrive.com/pipermail/wp-pro/ . I was wondering how is the response with that, specifically to BBpress work.

    From speaking to people, i found that many people who work with wordpress have no idea about BBpress. Furthermore, there are very few links (or widely visible ones) from the wordpress.com and the wordpress.org websites. Maybe you should look into it and see if you want to market the product further. Thats just my advice here.

    Second of all, i just don’t understand what is the reason that BBpress (this site) doesn’t allow ads for paid work.

    Thanks,

    Talbina

    #59023
    Trent Adams
    Member

    It could be made to look like that for sure, but it would require some organizing of how the data is displayed. Since both WP and bbPress have basic plugin API architecture, they can easily be extended to do many different things with plugins (limited only by existence and time I guess).

    Trent

    #59024
    Trent Adams
    Member

    You bet! Indexed no problem with the basic permalinks, the fancy permalinks and with the new ‘slug’ permalinks! It is just a matter of letting google know you exist, just like any like.

    Trent

    #59020
    Trent Adams
    Member

    That is excellent! Thank you!

    Trent

    #59004
    Trent Adams
    Member

    What the integration in the bbPress config.php does is tell bbPress to use the WP users instead of installing its own users table in the database. No configuration has to go into WP unless later you want to have registrations of bbPress make users in WP (that is a WP plugin) but not needed for an integration installation.

    Good luck and let us know how you are making out!

    Trent

    #2095
    talbina
    Member

    hello,

    I would like to know if BBpress posts get indexed n google?

    Thanks,

    Talbina

    #2094
    talbina
    Member

    Hello,

    I am not a developer and i dont know anything. Just wondering which software to use.

    Im wondering if the forum topics can be made to look like over here http://www.jobs.ac.uk/ the “Search jobs by subject area” section?

    Also, are there really any limitations with what can be done with wordpress/BBpress ?

    Thanks,

    Talbina

    #2093
    bernabauer
    Member

    Hi there people!

    I just finished translating to Brazilian Portuguese. The file is available for download at my blog:

    bbPress em português

    I noticed that the default theme has some problems, so I corrected the problems on the theme and packed it for download. It’s the same URL for this download.

    O arquivo para download do arquivo de linguagem para português do Brasil está disponível. Basta acessar a URL acima. Recomendo baixar o tema padrão que disponibilizei por que ele tem correções para alguns problemas de frase não contempladas no .po original.

    cheers!

    #59003
    Inquirer
    Member

    At the top of the config.php files of bbPress and WordPress these values will be the same.

    <?php

    // ** MySQL settings ** //

    define(‘BBDB_NAME’, ”); // The name of the database

    define(‘BBDB_USER’, ”); // Your MySQL username

    define(‘BBDB_PASSWORD’, ”); // …and password

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    Trent wrote:

    [For bbPress and WP to be integrated you have to configure your config.php before install to have your WP specific data in it (there is a portion near bottom) and then install bbPress in the same MySQL database regardless of where the physical files actually reside (your case /blog/ and /forum/).}

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave it as it is.

    $bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ‘http://mywebsite.com/blog/&#8217;; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ‘http://mywebsite.com/blog/&#8217;; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

    /* Stop editing */


    I already have WordPress installed in my public_html directory in a folder named blog.

    Above, I put in examples of how to fill-in ‘examples’

    Apparently it would be wp_home = http://mywebsite.com/blog/

    and wp_siteurl = http://mywebsite.com/blog/

    Apparently, only the WordPress has to have the bottom portion filled-in?

    If this is correct then I would have to fill-in bottom portion of the WordPress config.php and FTP it before I reinstalled bbPress.

    [regardless of where the physical files actually reside]

    I was thinking of the physical storage of the files.

    [Does that make sense?]

    I think so.

    #59002
    Trent Adams
    Member

    You must have a MySQL database that WP is installed in. For bbPress and WP to be integrated you have to configure your config.php before install to have your WP specific data in it (there is a portion near bottom) and then install bbPress in the same MySQL database regardless of where the physical files actually reside (your case /blog/ and /forum/). Does that make sense?

    Trent

    #59001
    Inquirer
    Member

    I have read through phpAdmin Quick Install at

    http://wiki.cihar.com/pma/Quick_Install

    It reads Extract files

    Untar or unzip the distribution (be sure to unzip the subdirectories):

    tar -xzvf phpMyAdmin-2.*.*.*.tar.gz

    in your web server’s document root.

    When I login to my server using WinSCP to connect my server via SSH, there is a button with / to connect to the root directory. When I click the button it displays / <root>

    The documentation recommends phpMyAdmin should be installed in the root directory (document root).

    I already have WordPress installed in my public_html directory in a folder named blog, which isn’t a database nor is it my root directory (document root).

    WordPress is up and running.

    [Then just install your bbPRess in the same database as WP.]

    Where on my web server is the database you are referring?

    Are you referring to the database files portion of the bbPress and WordPress installation?

    [You can have the forum installed wherever, I was talking about having bbPress and WP in the same database.]

    I can have WordPress installed in my public_html directory in a folder named blog.

    I can have bbPress installed in my public_html directory in a folder named forum.

    I apologize for my confusion.

    #59010

    In reply to: Punbb -> BBPress

    Trent Adams
    Member

    Beautiful! That is great to know! Thanks for this!

    Trent

    #59000
    Trent Adams
    Member

    You can have the forum installed wherever, I was talking about having bbPress and WP in the same database.

    Trent

    #50458

    In reply to: Google sitemap

    creatiu
    Member

    This plugin is not working property, actually is creating not valid URLS inside the sitemap like this:

    <url>

    <loc>://?</loc>

    <lastmod>2007-07-14</lastmod>

    <changefreq>monthly</changefreq>

    <priority>0.014705882352941</priority>

    </url>

    This happens with the latest version of bbPress (0.8.2.1)

    #58999
    Inquirer
    Member

    [If you plan on integrating WP and bbPress, it is best to have a running copy of WP up and going.]

    I already have WordPress up and running.

    [Then just install your bbPRess in the same database as WP. WordPress will have the database prefix of wp_ and bbPress with bb_]

    I have WordPress installed in my public_html directory in a directory named blog

    Do you mean install bbPress in the blog directory?

    In other words, don’t create a separate directory forum to install bbPress?

    I think I want mywebsitedomainname/blog and mywebsitedomainname/forum to be separate urls

    But to integrate WordPress with bbPRess do they have to have the same url?

    Thanks


    On a separate note

    I should be able to use WinSCP to login to my server via SSH, then access my database with a MySQL login, then drop the bb_ tables from the failed bbPress install.

    I imagine this could be done through the WinSCP Console

    I realize the phpAdmin is a more user friendly interface than the WinSCP Console.

    I sent an e-mail to my web hosting support, but they haven’t responded.

    #2092

    Topic: Punbb -> BBPress

    in forum Plugins
    annathea
    Member

    I took Bruno Torres’ converter script as a foundation, and re-wrote it to work with the Punbb database architecture. Also, added in a tiny bit of string clean up, since Punbb allows foreign characters in the username field, and BBPress does not.

    Here’s the code to look at:

    http://utopian.net/code/punbb-importer.phps

    And in a handy .zip for download:

    http://utopian.net/code/punbb-importer.zip

    A few important notes, since this is NOT at all pretty –

    1) It uses a lot of memory, so make sure PHP has access to at least 16mb in php.ini. If I had more than 20 minutes to devote to this, I’d look into that and try to improve it, but hey.

    2) If you’re importing a lot of data, you may need to split up the resultant sql file into smaller files less than 2mb in size. Add this to the list of things I would automate if I needed to use this script more than once.

    3) I am using BBPress integrated with WPMU and included lines for importing into the WordPress user tables. After I noted and fixed the problem converting Punbb’s lax, apostrophe-laden usernames to nice and sanitary WP-friendly ones, the script ran like a charm. Seriously, if I’d known it would be this easy I would have done this six months ago.

    4) The forum-parent to forum relationship imported correctly into the database, but displayed a little funny, so I manually re-ordered the forum items in the database and massaged the template a little bit to recognize forum parents a little bit differently, more PunBB style.

    5) A clean WPMU and BBPress install is ideal, but I already had ten existing WP users, half of whom had a user account in the PunBB data I was merging. For such a small data set, it was very easy to manually correct this by deleting the PunBB users and making sure that the imported topics and posts for those users pointed to their current id.

    Hopefully this will be a good start for those of us looking to move existing PunBB forums to BBPress & WordPress. Good luck, and let me know if you use it!

    #58935
    Sam Bauers
    Participant

    You aren’t seeing things.

    This is fixed in the current revision in subversion.

    Ticket was here.

    #58987
    fel64
    Member

    Are you using .8.2.1?

    get_user_profile_link() doesn’t actually have any required arguments in the newest version (https://trac.bbpress.org/browser/tags/0.8.2.1/bb-includes/template-functions.php, line 1070). I can’t understand why you’d have a problem like that.

    I don’t think it needs to be used in the loop. It does if you’re not going to provide arguments, but this is an error generated by PHP not bb. Any variables passed to it that would have been set in the loop but aren’t set outside it would simply be passed along, without an error, albeit unset.

    #58998
    Trent Adams
    Member

    You will be able to find a link to the plugin off this page:

    http://www.silpstream.com/blog/

    It is really easy to install. Just read the readme.txt that is included for directions. If you plan on integrating WP and bbPress, it is best to have a running copy of WP up and going. Then just install your bbPRess in the same database as WP. WordPress will have the database prefix of wp_ and bbPress with bb_

    If you have WP running, just install bbPress in the same database.

    Trent

Viewing 25 results - 60,776 through 60,800 (of 64,515 total)
Skip to toolbar