Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 62,251 through 62,275 (of 64,428 total)
  • Author
    Search Results
  • Trent Adams
    Member

    Try your other thread:

    https://bbpress.org/forums/topic/820?replies=3

    Trent

    #1496
    stuboo
    Member

    I have bbpress and wordpress running independently on the same domain but am having some encoding problems with bbpress that I didnt have on my local server.

    As an example . . .

    the…?

    Shows as . . .

    the…?

    I am sharing some of the same header information between my bbpress install and my wp theme, but I don’t know enough about encoding to know if that’s the problem.

    Thanks,

    Ryan

    #54984
    ccmve
    Member

    I changed the value of bb_active_theme in the database to:

    /bb-templates/kakumei

    However, when I refresh the admin > presentation page in a browser the it reverts back to:

    C:WWWPUBLICforums.mybbpress.com/bb-templates/kakumei

    #1487

    http://bbpress.org/plugins/topic/37

    This will hopefully fix the following issues.

    • This user is a bozo: "1" in the edit profile page.
    • Slashes getting added to some quote marks (" -> ") in posts.

    #53898

    In reply to: Bozo problem

    Please try this plugin: https://bbpress.org/plugins/topic/37

    And let us know if that resolves the “1” strangeness on the profile edit page.

    #53423
    mirce
    Member

    It can be done.

    You can check out:

    https://bbpress.org/forums/topic/771

    And see http://www.dfur.com to see how I did it. THe script is not ready yet, I still have to add the rewrite htaccess to “page 2” topics.

    #52902
    AphelionZ
    Participant
    #51638
    ipears
    Member

    Part of the fun with bbPress is that it actually supports Akismet.

    I tried to change the values for Bozo in the mySQL, but that did not work either.

    I fixed it finally by creating a new profile with “administrator” rights and I did checkmark the option to post more in 30 seconds, do not really know whether this is of influence, but is sounds as a logical parameter for spammers.

    Guess that you can also change the key user to “Admin”, but then changing back would only be possible through mysql…

    Will see how it holds for now.

    #55113
    chenchen
    Member

    well it meets all the requirements… what about in the config file? what shall i write to “$bb->domain” and “$bb->path”? i have a folder in my localhost called “testfolder”, and i want to install BBPress inside this folder so the path of my BBPress must be http://localhost/testfolder/forums? is this possible?

    :)

    #55110

    In reply to: I cannot install bbp

    Trent Adams
    Member

    I am not sure what problems you are having exactly. Is it the same as your last post on this issue? If so, chrishajer wanted to help you in this reply.

    I see from your screenshot and your config.php file above that you haven’t edited it to your circumstance. You have to put in the values that correspond to your install for these parts here:

    $bb->domain = 'http://my-cool-forums.example.com'; // Example: 'http://bbpress.example.com'
    // There should be both a leading and trailing slash here. '/' is fine if the site is in root.
    $bb->path = '/'; // Example: '/forums/'

    Right now, you have the my-cool-forums.example.com and that has to be the URL of your install. Does your system work with an IP address or http://localhost or how do you access it. That will be part of the reason the graphics don’t work as that portion isn’t correct.

    Trent

    #52901
    AphelionZ
    Participant

    I’m having trouble with this plugin – MediaWiki version 1.6.9, using the Authpress.php from the codex link in the first post.

    I try to log in and I get this error:

    ..from within function “AuthPress::authenticate”. MySQL returned error “1146: Table ‘*********.wk_wp_users’ doesn’t exist (*****.***)”

    It looks like it’s appending wk_ before my user table?

    #55112
    Trent Adams
    Member

    You can install bbPress on your local computer as long as you have a system that supports the minimum requirements for install. There are packages out there that have all the components.

    Trent

    #1495
    chenchen
    Member

    Hi, everyone. is it possible to install BBPress to my own computer? if it is, what do i need to do?

    thanks a lot. it would really be a great help. :)

    #1494
    flatworm
    Member

    My bbPress does not want to show graphics and log me on.

    It looks like if i would run it from my disk, without xampp.

    Help me please.

    http://img291.imageshack.us/img291/6812/untitled2sy5.png

    http://img137.imageshack.us/img137/8210/untitledua0.png

    My bbPress does not want to show graphics and log me on.

    It looks like if i would run it from my disk, without xampp.

    Here is my config.php

    <?php

    // ** MySQL settings ** //

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

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

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

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

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.

    // Adjust the domain and path to suit your actual URL.

    // Just the domain name; no directories or path. There should be no trailing slash here.

    $bb->domain = ‘http://my-cool-forums.example.com&#8217;; // Example: ‘http://bbpress.example.com&#8217;

    // There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.

    $bb->path = ‘/’; // Example: ‘/forums/’

    // What are you going to call me?

    $bb->name = ‘Thinker’;

    // This must be set before running the install script.

    $bb->admin_email = ‘v@m.com’;

    // Set to true if you want pretty permalinks.

    $bb->mod_rewrite = false;

    // The number of topics that show on each page.

    $bb->page_topics = 30;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 60;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = 0;

    // Change this to localize bbPress. A corresponding MO file for the

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = ”; // Example: ‘0123456789ab’

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

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

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

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

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

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?>

    #54406
    lonemadmax
    Member

    Yep, just have a look at the beginning of the injected javascript, in the plugin file. st is the variable through which you change the CSS of the box. Regarding position, the original file has:

    st.position = "fixed";
    st.left = st.top = "40px";

    Changing top to bottom may give what you are asking for. You can change the value, of course, and add other CSS that you may want. Also, if you know JavaScript, you can make the box work as a draggable window, there are examples of that out there.

    I’ve just tried it under MSIE and guess what, it puts the box in the bottom of the page, after all content (that is, where it is generated). :-)

    And there’s a BUG (I’m talking about my files again, not MSIE positioning). The “close this box for this session” closes it forever. Well, for “more than just this session”, a week, I think. I can’t correct it and test it now, but the change needed would be to add the “just for this session” expiration time for the “annoying_box” cookie. That’d be the third parameter to bb_cookie in line 15 of themes.php. There are only two parameters now, and bbPress takes the absence of the third (or its value being 0) to mean a week. Right now I don’t know if you have to set a value in the past, a negative value or no value to make it a session cookie. In the latter case, it may be necessary to call setcookie directly instead of bb_cookie as bb_cookie changes the no-value case to a week.

    You may also leave that option out, the “box that disappears after 5 seconds” one may be enough.

    #1493
    bbolman
    Participant

    Pro Forums has just introduced a brand new theme switcher for you to try out different available themes for bbPress. All credit for the coding itself goes to lonemadman. To view more information, go here: http://proforums.palmansworld.com/bbpress-plugins/theme-switcher/

    Or to view the beast itself here: http://proforums.palmansworld.com/foro

    #54983
    ccmve
    Member

    OK. Looking in the database tables in bb_topicmeta from bb_active_theme the value is C:WWWPUBLICforums.mybbpress.com/bb-templates/kakumei

    I have no idea how this value got there, or if I might have other problems elsewhere. What should this value be?

    #55092
    Trent Adams
    Member

    The forums here and the blog are done with CSS and their own themes meant to look the same. The tutorials are a way to have bbPress using the WP theme itself I believe.

    Trent

    #54979
    fel64
    Member

    Are you using xampp? I’ve no experience with that whatsoever, but since it’s a path on your hard drive it seems that way to me. I’ve seen a few people say they’ve had problems using bbPress with that, and someone rightly point out that if you test on xampp you’ll get a bunch of errors you wouldn’t get on a server and miss the ones you would get.

    I’ve personally had no problems on my server, and if you already have hosting and an unused or wordpress db then there probably isn’t any harm in just testing it on the server. :)

    Edit: err – hehe …

    #54978
    ccmve
    Member

    I deleted all the theme files, and uploaded mytheme to /my-templates/mytheme/

    I was unable to select mytheme from the presentation tab as it still listed the absolute path in the middle of the URL with extra slashes:

    http:// forum.mybbpress.com/bb-admin/themes.php? theme=C:\WWW\PUBLIC\forums.mybbpress.com/ my-templates/mytheme/&_wpnonce=36ec0251eb

    I had to reload the kakumei folder to /bb-templates/kakumei to get the site working agin. The kakumei theme is now listed under the presentation tab as the current theme.

    #1477
    ccmve
    Member

    I can’t use a custom these after upgrading to 0.8.1.

    Under the presentation tab it lists my custom theme, but with this URL:

    http:// forum.mybbpress.com/bb-admin/themes.php? theme=C:\WWW\PUBLIC\forums.mybbpress.com/ bb-templates/mytheme/&_wpnonce=36ec0251eb

    How can I eliminate the extra slashes and the reference to the absolute path?

    The default theme is working, and it works great, but I’d like to be able to use my custom theme again!

    #54675

    In reply to: Import SMF to bbPress

    vedmak
    Member

    Thank you very match!

    #54777
    chrishajer
    Participant

    I created a trac ticket:

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

    #54674

    In reply to: Import SMF to bbPress

    lonemadmax
    Member

    You don’t have to know Spanish to send mail :-)

    I got your script, and it worked for me. That is, after I added an ‘l’ you deleted with a parenthesis :-). So it seems the problem with your second try was just a typo. In line 521 the original script said:

    $import_sql = utf8_encode($import_sql);

    and yours say:

    $import_sql = $import_sq;

    So add back the ‘l’ or delete the whole line, as it’s useless in the utf8->utf8 version.

    #55094
    fel64
    Member

    I think the contents of your bbpress folder (config.php, bb-includes, bb-images etc) should have been uploaded to /otherblog/forums, and your .htaccess file should go next to them in the /otherblog/forums folder. Good luck :)

Viewing 25 results - 62,251 through 62,275 (of 64,428 total)
Skip to toolbar