Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 61,876 through 61,900 (of 64,458 total)
  • Author
    Search Results
  • #55576

    In reply to: User ID = 999999999?

    cweb
    Member

    I’ll confirm that I have this problem as well, from a phpbb to bbpress conversion. I actually tried to reset the auto_increment like chrishajer said:

    ALTER TABLE bb_users AUTO_INCREMENT = 400

    Since my original ID’s stopped at around 350.

    It didn’t work though, still incrementing in the billions. MySQL documentation says:

    “You cannot reset the counter to a value less than or equal to any that have already been used.”

    http://dev.mysql.com/doc/refman/5.0/en/alter-table.html

    So to me that reads I need to delete the admin user 999999999 first, am I correct?

    #55905
    Sam Bauers
    Participant

    Please be more specific, what does or doesn’t work? Do the restricted domains show up in the registration form? What version of bbPress are you using. What other plugins. Etc, etc.

    #56248
    Vili
    Participant

    Brilliant! I didn’t know that global variables like this exist in PHP (I’m a hobbyist). Thanks a bunch!

    Btw, I had to change the declaration from

    global $forumpage = true;

    to

    global $forumpage;

    $forumpage = true;

    It gave me an error otherwise.

    #56247
    fel64
    Member

    I have no idea how the bb environment can be detected, but I think I know why your $forumpage hack didn’t work; the WP headers are in different files and such.

    When setting $forumpage, try something like this:

    global $forumpage = true;

    When checking if $forumpage is true, do it something like this:

    global $forumpage;
    if( $forumpage = true )
    {
    ...
    }

    If you tell PHP that you want the global variable $forumpage it should work.

    Not too confident about this, but that should tell PHP to make them global (ie. available everywhere). Otherwise you’ll probably be calling different variables called $forumpage.

    #1649
    Vili
    Participant

    I’m not sure if I should ask this here or over at WordPress.org, but perhaps this is more of a bbPress question in the end.

    I have the latest bbPress and WordPress installations, and both are running fine. The user databases are integrated, and I have also managed to get bbPress to use my WordPress theme after some poking around.

    What I actually did with the theme integration was that I made bbPress to call the WordPress header and footer files instead of the bbPress ones, having in turn modified the WordPress files in a way that everything except for the page-specific content is in those two files. This way, the forum shows up where the WordPress content (posts, pages, etc.) would otherwise go. Life is good.

    My problem now is that I would like WordPress to recognize bbPress when it is serving a bbPress page. In other words, I would like to have something like an “if” condition for example in my WordPress header that checks whether the page currently being shown is a bbPress page. If I could do that, then I could do something like “if bbPress then echo bbPress headers, else echo WordPress headers”.

    The most basic solution that I could come up with was the following: before having a bbPress page call the WordPress header, introduce a variable like “$forumpage” and set it to “true”. Then simply include a check in the WordPress header that checks whether $forumpage is “true”. For some reason, however, this doesn’t work as the variable seems to get erased.

    I also tried something like using the condition if($forums) in the WordPress header, which I saw was in bbPress, but that gave no results, either.

    There probably is a(n easy) solution to all this, so I would really appreciate it if someone could point me to the right direction. I’ve spent most of the evening working on this, and have tried just about everything that I can think of and have read about on these forums and over at WordPress.org, but alas without the desired results.

    Thanks for reading!

    #56227
    henry014
    Member
    #1647
    henry014
    Member

    In bbPress vers. 0.8, the Chinese tag name’s problem fixed. When I add a Chinese tag name, the tags was added success!

    But when I click the Chinese tag link, there will be a error message in Firefox “Redirect method is not correct” (this is transfer from Chinese… so I’m not sure it’s correct text, but it’s the same meaning.)

    Looks like it has some error so that make a unlimited loop…

    #56191
    fel64
    Member

    I’d have to read the forums, once again, to figure out what you mean.

    Or you could just ask us here. :) A large part of these forums is just for help making it work. You’d be happier with bbPress in the long run.

    The markup thing for example is quite simple; I struggled with it initially but a random guess worked out, and the quicktags certainly help. Any text between two backticks (on a European/English keyboard, the button just above tab) will be rendered as code. The ‘markup’ thing refers to HTML, so to make that work you do this:

    <em> makes your text italic </em>

    <br />
    like so will create a single new line.

    <ul> or <ol> will create a ‘list’ structure. Simply put <li> and </li> around each seperate list element. End the list by putting </ul> or </ol>.

    To create links, you do this: <a href="www.example.com/linklocation">link text</a>.

    #56201
    wmarcy
    Member

    // ** MySQL settings ** //

    define(‘BBDB_NAME’, ‘wetworx_wp’); // 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

    // 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://www.wetworx.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 = ‘/forums/’; // Example: ‘/forums/’

    // What are you going to call me?

    $bb->name = ‘WetWorx Forums’;

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

    $bb->admin_email = ‘wetworx@wetworx.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 = -5;

    // 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;

    #1645
    #1644
    crosinski
    Member

    I admire the idea of bbpress … I really do. After several hours of work, I’ve finally got a forum up and running on my site. There is so much more work to be done to make it usable for my visitors, though, that I just don’t think I can do it. Every installation has been a struggle for me. I don’t know php. The config file took me an entire day to get right. Each and every plugin I installed required further tinkering.

    Here’s a small example that represents my large frustration:

    Allowed markup: a blockquote br code em strong ul ol li.

    Put code in between backticks.

    That’s not enough information for me. I can’t make that work. I’d have to read the forums, once again, to figure out what you mean. And I’m just too exhausted to do that, so I’m going to install another forum for now.

    I’ll keep checking back to see the improvements that you make and, when you get everything worked out and as easy to use as WordPress, I’ll try again.

    But, for now, installing bbpress requires too large a learning curve for me.

    Good luck and carry on,

    C.R. the Exhausted

    #56166

    In reply to: Quote Plugin Weirdness

    Null
    Member

    That is the problem with this plugin, it uses blockquotes. I suggest the plugin builder uses <quote></quote> for this (some users want to use the quoteblocks and also want to quote stuff.

    But yourproblem (Keith) is that bbpress can’t handel nested blockquotes (I think)

    #1643

    Topic: Numbered Posts

    in forum Themes
    citizenkeith
    Participant

    I’d like to have the post number shown for each post. I’m hoping that bbPress already has this functionality, and I would need to do is insert some code into my template. Or do I need a plugin?

    #1642
    citizenkeith
    Participant

    I’m running bbPress 0.8.1 with the Fix bbPress Plugin. I installed Michael Nolan’s Quote plugin, version 0.2.

    It works fine if you quote simple post. But when you quote a post that already has a quote in it, things get weird. This is what my edit box looks like when I do that:

    <blockquote></blockquote>
    <blockquote>
    This is text that was quoted in the post that I am quoting.

    </blockquote>
    This is the text that I am quoting directly.

    It looks as though the plugin doesn’t like nested blockquotes.

    My forum is here:

    http://www.citizenkeith.com/forums/

    #56158
    fel64
    Member

    Yo.

    Open your folder containing all your bbPress stuff, including the config.php file. Make a new folder and call it my-templates, if it doesn’t exist yet! Open my-templates and make another new folder, and call it anything you like. This folder will house your forum’s theme.

    Now go back to the main bb folder, and open bb-templates > kakumei. Copy the style.css file into the folder you created a minute ago.

    Open style.css, and look for this (it’s right at the top):

    body {
    margin-bottom: 50px;
    background: #fff;
    font: 62.5% 'Trebuchet MS', 'Lucida Grande', Verdana, Tahoma, Arial;
    }

    Those are the fonts that will be used, in order from left to right (if someone doesn’t have, for example, Trebuchet MS they’ll then try to use Lucida Grande). The font they use here is Georgia.

    Change that part to:

    body {
    margin-bottom: 50px;
    background: #fff;
    font: 62.5% Georgia, 'Times New Roman', Times, serif;
    }

    Save it and put the my-templates folder and everything in it on your server in the main bb folder.

    Now, open your forums, go to the admin panel, go to Presentation, and click on your theme’s name. Your forum should look the same as before, but with the new font. :)

    #56162
    Trent Adams
    Member

    bbPress is brought to you by Automattic, the corporation. Not sure if there is a place to donate to this project or not…..I don’t think anyone has ever asked!

    Trent

    #56156
    Griffology
    Member

    The theme appears to be a custom one done to match the rest of their website. ;)

    #56155
    wmarcy
    Member

    I would really love to know what theme they are running.

    #1637
    webscratches
    Member

    Hello,

    I just installed BBPress but some links appear to be broken. I tried to make new posts in order to test the forum but they would not show up either

    My forum is located here:

    http://forum.webscratches.com

    Does anyone knw where this could be coming from?

    thank you very much

    #56154
    Trent Adams
    Member

    Added to the list! If you see another big player using bbPress, let us know!

    Examples

    Trent

    #54988
    Trent Adams
    Member

    Try this thread:

    https://bbpress.org/forums/topic/700?replies=64#post-4792

    It might be a localhost issue with the backslashes. There is a plugin I reference in there that might help.

    Trent

    #55904
    midnightsun
    Member

    hey,

    this doesn’t seem to be working at all!! The first time I used it, it worked work but ever since it just hasn’t.

    any ideas?

    #56153
    boomanfloral
    Member

    Cool! Congratulations! :-)

    #51441
    citizenkeith
    Participant

    Version of the plugin?

    1.3-fix

    bbpress version?

    version 0.8.1 with Fix bbPress Plugin 0.8.1-1 installed

    Have you tried setting $mysql41 to false?

    Not yet.

    Very strange … can you provide an link to your forums? …

    http://www.citizenkeith.com/forums/

    #51440

    Version of the plugin? bbpress version? Have you tried setting $mysql41 to false?

    Very strange … can you provide an link to your forums? …

Viewing 25 results - 61,876 through 61,900 (of 64,458 total)
Skip to toolbar