Sam Bauers (@sambauers)

Forum Replies Created

Viewing 25 replies - 801 through 825 (of 1,069 total)
  • @sambauers

    Participant

    There are four problems with your stylesheet.

    Line 18: The font name Trebuchet MS must be quoted like this -> ‘Trebuchet MS’

    Line 46, 177 and 385: Do not use HTML style commenting “<!–” and “–>” use “/*” and “*/”

    Safari 2 hates bad CSS.

    @sambauers

    Participant

    Right after this topic was started there is a sudden flurry of activity from mdawaffe in trunk.

    So lots is going on now.

    @sambauers

    Participant

    > Impressive looking work.

    Thanks, the release of version 4 of that project is scheduled for 21st September 2007.

    Version 4 is the first public (open-source) major release.

    @sambauers

    Participant

    The slower development cycle on bbPress at the moment is mainly because there is one active committer – mdawaffe – one other committer – matt – and only a few regular core contributors (i.e. patch suppliers) – so10, sambauers and very few others.

    mdawaffe has been a little absent from bbPress recently, but he also works on WordPress and other projects within Automattic a lot, so maybe that is where he is concentrating at the moment. There is a chance that mdawaffe is working on some non-public project that has to do with bbPress, but I can’t confirm that.

    matt started bbPress, but these days doesn’t work on bbPress much at all.

    so1o has been quiet around here lately too, although he recently revamped his personal website (built on wordpress/bbPress). Maybe he can tell us what he is up to at the moment himself?

    I (sambauers) am in the middle of finishing a major release of my own open source project and won’t be doing anything at all (besides lurking in this forum) until next month.

    So it basically comes down to these four people to make bbPress go forward at the moment, and for various reasons they aren’t working on it at the moment.

    Please keep in mind that I can’t speak with any authority for the others I have mentioned here and I am happy to be corrected, but this is the best account of the situation I can give at the moment.

    @sambauers

    Participant

    > “Client API version 3.23.49” – I think bbPress requires at least version 4.0 MySQL

    That’s definitely the problem here. Just to clarify, your MySQL client library that PHP is using is too old. Adding new extensions to PHP in windows is comparatively easy. Check the PHP manual for info on how to do it, but basically you should have the extension you need somewhere in your PHP folder already. It’s just a matter of moving it to the right place. Perhaps a windows person can help out here?

    In reply to: Unread Topics

    @sambauers

    Participant

    You should consider just tracking what the last time was each user viewed a topic. That will reduce the number of entries in your table to a maximum of one entry for each user on each topic, rather than one entry for each user on each post.

    As for the delay in getting plugin “approval”, you aren’t alone. I’ve waited a while at times and had to poke for it to get done, approval is less about the question of “is your code good enough” and more about weeding out spam/bozos etc. Also, from what I understand mdawaffe is pretty much the only developer doing significant work on bbPress at Automattic and he has other responsibilities there as well (including maintaining the WordPress plugin browser).

    The community here is growing, but small, and the few people who are regular contributors to this forum are really quite helpful, enthusiastic and generally pretty knowledgeable. I hope you feel more welcome as you get to know us and become more involved.

    @sambauers

    Participant

    Using this plugin:

    https://bbpress.org/plugins/topic/50

    You can customise what appears under the user’s name.

    Don’t worry about the first section of the plugin, just skip to the last field. Entering a single <br /> tag in that field will stop anything displaying.

    Unfortunately the plugin can’t change “keymaster” to something else, for that you will need to hack or use a new language file as Detective suggests.

    @sambauers

    Participant

    > .htaccess is in lankapod/forum/ folder

    That’s good, but is there a .htaccess in your base ( lankapod/ ) directory?

    @sambauers

    Participant

    Read my posts above with regards to running bbPress in a sub-directory and having WordPress mod-rewrite rules in the parent directory.

    @sambauers

    Participant
    In reply to: Rewriting up one level

    @sambauers

    Participant

    My advice is don’t try to change bb_repermalink().

    Just to qualify myself, I rewrote bb_repermalink() a while back to implement slug-based permalinks. It’s a tricky beast, and the most complex part is the profile-page case.

    But if you must, then you should start by turning debugging on $bb->debug = 1 in config.php should do it. Then when you hit your link you should get some readable debug info at the top of your page.

    The critical part of stopping the redirect is on line 1708 of bb-includes/functions.php, you have to make that condition happy to stop the redirect to it’s preferred permalink location. That may involve simply modifying the get_user_profile_link() and also the get_profile_tab_link() functions, but I’m not 100% sure about that.

    @sambauers

    Participant

    This is plugin territory.

    I’m sure _ck_ will write it eventually. : )

    In reply to: Rewriting up one level

    @sambauers

    Participant

    Add this to your sites root directory .htaccess file.

    This assumes that your bbPress install is in a subdirectory of your sites root called “forums”.

    These rules need to be added before any WordPress rules.

    The rewrite will work, but bb_repermalink() will change the URL so that it appears as it normally would.

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^users/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^users/([^/]+)/([^/]+)/?$ /forums/profile.php?id=$1&tab=$2 [L,QSA]
    RewriteRule ^users/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
    RewriteRule ^users/([^/]+)/?$ /forums/profile.php?id=$1 [L,QSA]
    </IfModule>

    In reply to: Rewriting up one level

    @sambauers

    Participant

    Even if you got the Rewrite rules written correctly, the page wold not load due to the checks carried out that check the URL in the function repermalink().

    In reply to: Akismet key id

    @sambauers

    Participant

    Did you not see this?

    From config.php:

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

    @sambauers

    Participant

    Personally, I’m not insulted, just curious as to the implications of the current approach (which is the same approach I generally take in development – i.e. XHTML 1.1 as text/html). What are we breaking by doing this. If I pass a browser a document with MIME type of text/html or application/xhtml+xml it will pass the document to it’s rendering engine. After that, does it matter?

    It’s quite likely that XHTML 1.1 will stay a draft standard, as the new XHTML 2 and HTML 5 specs are where the action is at the moment. Arguably HTML 4.01 isn’t finished either.

    @sambauers

    Participant

    What exactly is “tag soup”, and what does it taste like? Is it really a problem? It’s just the MIME type.

    It isn’t so simple to just change the DOCTYPE. Browsers render different DOCTYPEs differently. Especially Internet Explorer.

    I’m much more comfortable leaving the “wrong” mime type in there than having to deal with different layout quirks of different DOCTYPEs.

    Or are you really advocating that we should be dropping back to HTML 4.01?

    @sambauers

    Participant

    Thanks for your notes.

    What is the problem exactly with serving XHTML using text/html?

    It’s allowed under the standard:

    XHTML 1.1 documents SHOULD be labeled with the
    Internet Media Type text/html as defined in [RFC2854]
    or application/xhtml+xml as defined in [RFC3236].

    And as far as I know IE6 tends to bork out when you specify “application/xhtml+xml”.

    @sambauers

    Participant

    Yeah, that’s probably sanitized into nothing.

    Add a ticket describing it in Trac.

    We’ll need to create a case for “untitled” topics like this.

    In reply to: Wrong user count

    @sambauers

    Participant

    I would not have that expectation unless you report a bug in the trac site.

    http://trac.bbpress.org

    Login with the same details you use here.

    @sambauers

    Participant

    I believe you can do this…

    <?php topic_time('D M j Y G:i:s'); ?>

    But I’ve never tried it.

    @sambauers

    Participant

    Are you trying to integrate with a WordPress install?

    @sambauers

    Participant

    Sorry, I don’t grok jQuery. I prefer prototype.

    @sambauers

    Participant

    Presumably the database settings are correct, because you got that far.

    I also presume that you are referring to the initial (keymaster) user account when you are talking about “username”.

    Do you get the “no user found” message when you first try to login?

    Did you use the password it gives you to use at the end of the install process?

    @sambauers

    Participant

    Ummm, I probably won’t add that sort of functionality to the plugin. Perhaps you should try to hack together a plugin yourself?

Viewing 25 replies - 801 through 825 (of 1,069 total)