Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 27,226 through 27,250 (of 32,463 total)
  • Author
    Search Results
  • #60879
    chrishajer
    Participant

    Did you add that to wp-config.php as the first line, right after the <?php?

    The error cannot redeclare means something has already been included that it’s trying to include again.

    http://www.google.com/search?q=Cannot+redeclare+_http_build_query()

    https://bbpress.org/forums/topic/having-trouble-integrating-wp-functions

    RossB
    Member

    Thanks, Chris. I know Firefox is a better browser, and the only reason I am using IE is out of habit. Currently running IE 6, and I suppose newer versions are equipped for RSS feeds. Anyway, you’ve cleared up the mystery of the RSS coded page for me! Weird thing, is, IE does show RSS feeds as they should appear on various blogs I’ve subscribed to. Why it should be different for the WP and bbPress forums…aaarrghh, not even going to think about it!

    #66366
    _ck_
    Participant

    It’s very easy to do this via a plugin.

    You have to attach to the ‘bb_head’ action.

    In fact if there’s a plugin for WordPress that does it, it would take under a minute to change it for bbPress.

    Here’s a mini-plugin I wrote to do noarchive and nofollow:

    function no_archive() {
    echo "n".'<meta NAME="robots" CONTENT="noarchive,nofollow">'."n";
    } add_action('bb_head', 'no_archive');

    .

    It would just have to be wrapped in an IF statement with a URI check to add it when you want it. To get the current location, either check bb_get_location or steal it’s code and modify as desired.

    Something like this (untested)

    function no_index() {
    if (in_array(bb_get_location(),array("login-page","register-page","profile-page")) {
    echo "n".'<meta NAME="robots" CONTENT="noindex,nofollow">'."n";
    }
    } add_action('bb_head', 'no_archive');

    #66365

    Anyone? Simple “if page” stuff. Yet, I don’t know what the variables are. :|

    #65852
    _ck_
    Participant

    Nice look but you need to look into your server configuration as the bbPress pages are being served with 404 error code instead of 200 (even though they display).

    Something might be wrong with your htaccess

    #66387
    _ck_
    Participant

    I am not sure about the loading order of your plugin but keep in mind that stuff like bb_is_user_logged_in() is only available when bbPress is fully initialized.

    Essentially you cannot execute anything but the most basic independent code until do_action('bb_init' happens.

    So you have to hook bb_init, ie:

    add_action('bb_init','your_function_name);`

    and THEN your function can check bb_is_user_logged_in.

    BB_IS_ADMIN is a constant so be sure to use DEFINED to test it and not directly or you’ll get an error

    if (defined('BB_IS_ADMIN')) {

    (also, BB_IS_ADMIN means if you are in the admin menu, not if the user is an administrator – not sure if you knew that)

    #66011
    _ck_
    Participant

    For those that know what they are doing and have subversion, you can checkout or switch to the alpha trunk of bbPress which will give you compatibility with WordPress 2.6

    svn switch http://svn.automattic.com/bbpress/trunk/

    Unfortunately an automated download zip cannot be created because this is the first version of bbPress that uses BackPress which is automatically added by svn, but can’t be zipped by TRAC.

    Here’s a ZIP’ed snapshot from yesterday:

    http://www.mediafire.com/?alvvslgmh22

    Keep in mind that you should NOT use the bbPress trunk for live websites – it’s bound to have bugs and some might affect security. You are on your own if you chose to use this version – plugins may have some compatibility issues.

    1.0 requires the 3 new WP matching keys inserted into bb-config.php (see thebb-config-sample.php for more info)

    #66277
    _ck_
    Participant

    For those that know what they are doing and have subversion, you can checkout or switch to the trunk of bbPress (which will give you compatibility with WordPress 2.6)

    svn switch http://svn.automattic.com/bbpress/tags/1.0-alpha-1/

    Unfortunately an automated download zip cannot be created because this is the first version of bbPress that uses BackPress which is automatically added by svn, but can’t be zipped by TRAC.

    Here’s a ZIP’ed snapshot from yesterday:

    http://www.mediafire.com/?y33rsdhxeld

    Keep in mind that you should NOT use the bbPress trunk for live websites – it’s bound to have bugs and some might affect security. You are on your own if you chose to use this version – plugins may have some compatibility issues.

    1.0 requires the 3 new WP matching keys inserted into bb-config.php (see thebb-config-sample.php for more info)

    Sam could use your bug reports via TRAC if you find problems.

    #66373
    _ck_
    Participant

    Glad to hear it worked – remember to not keep using $bb->secret though in your config and update the db properly as it lowers the security of your setup somewhat.

    (The idea being an attacker might gain access to bb-config.php and not your db to gain the second half of the key – not my design and not sure I agree with the logic but I guess it’s still better than keep both in an obvious place)

    #66274
    alexleonard
    Member

    Is there any estimate on when this will be coming out?

    Very much looking forward to it :)

    #66381

    In reply to: Rewrite url Problem

    chrishajer
    Participant

    The syntax of that file is OK (I tried it on my forum), so if it is giving you a 500 error, your host does not allow the directives you’re trying to use in .htaccess. Check with your host to see if .htaccess is allowed and what directives are allowed in it.

    If the 500 error was with Options +MultiViews then the host just does not allow that. If this .htaccess file with all the rules does not work, please explain what happens or post a link to your forum.

    Also, be sure you save the file as .htaccess beginning with a period (hidden file on *nix.)

    #66372
    783210
    Inactive

    _ck_ That worked!!!! Thank you so much!!!

    chrishajer

    I don’t have access to my client’s hosting plus I’m not very familiar with Plesk to guide him without looking at it myself.

    Anyhow, the problem has been solved :))

    On a sidenote: This forum keeps telling me my username does not exist when I try going to my profile or favourites 😮

    #66371
    _ck_
    Participant

    It might be possible to do this inside bb-config.php

    $bb->secret=”blah blah your key”;

    and override the internal db.

    I have to lookup if “secret” is the real name though.

    (that’s in addition to define(‘BB_SECRET_KEY’ )

    Yeah, apparently it really is $bb->secret give that a try.

    chrishajer
    Participant

    Here is a screenshot of my iGoogle page with the bbPress.org Recent Posts feed right at the top/center. Your post is visible there :-) All the items on this page are RSS feeds.

    http://www.chrishajer.com/bbpress/iGoogle.png

    #66368
    chrishajer
    Participant

    How about just putting the correct value in bb-config.php?

    define('BB_SECRET_KEY',

     

    Just make that the same as the value in wp-config.php

    There’s no way in Plesk to manage the database? That seems odd. Do you have shell access where you could use mysql from the command line?

    chrishajer
    Participant

    You need a feed reader, that’s all. With FireFox, when you click on the RSS icon, while viewing a topic page, I think it asks “subscribe to topic” and if you want to use “live bookmarks” which are RSS feeds built in to Firefox (this is probably different between FF2 and FF3.)

    If you are seeing code, then the browser you are using is not equipped to handle RSS feeds.

    Google Reader is one RSS feed reader:

    http://www.google.com/reader/

    The Google Personalize Home Page allows you to add RSS feeds right there too. I follow a lot of support forums that way. Just click “Add Stuff” then skip all the pretty icons and find the text “Add feed or gadget” which used to be called “Add by url” or something.

    http://www.google.com/ig/

    You just need a feed reader and I think everything will be fine.

    #66009
    _ck_
    Participant

    energymv, there’s no real answer right now – I know it won’t happen in July and my educated guess is it’s not likely to be August. So for those that insist on a date, think September.

    Sam has indicated he’s not inclined to release another version of 0.9 that changes to the 2.6 cookies, so maybe by late August there will be an early version of 1.0 beta that will be usable.

    ps. sometimes Sam and MDA have been known to suddenly set a deadline and get cranking on code/bugfixes so don’t be surprised if they prove me wrong and magically churn out a new version in a few weeks – I’m just saying they have quite a bit of things to do before it’s ready…

    RossB
    Member

    Guys, be gentle – I am fully aware that this is a question as technically ignorant as it gets.

    I have registered for a few RSS feeds on blogs etc without problem, but I have never been able to figure out how the RSS feeds work with the bbPress and WordPress support forums.

    Whenever I have decided I’d like a feed of a particular thread I’ve posted on, for example, I click on the RSS button and get a page full of code I have no idea what to do with.

    Could any of you kind informed folk explain in lay language how I can turn this page of code into a way of registering for a feed, please?

    #3680

    I was wondering, while designing my new theme, could you implement conditional meta tags? Specifically, robots control. I’d like to add noindex and nofollow to log-in pages, registration pages, user profiles, et cetera.

    I wish there was a “Codex” for bbPress…

    #3678

    Topic: XaniForums

    in forum Showcase
    Ben L.
    Member

    I’ve been working on this for about a week now, and I think it’s just about done.

    http://www.xanimyle.co.cc/xaniforums

    Plugins used:

    • Bozo Users 1.0
    • Akismet 1.0
    • Post Count Plus – Dynamic.Titles & More! 1.1.5
    • bbPress Web Compression (bb-gzip) 0.02
    • Unread Posts 0.9.0
    • Allow Images 0.7.1
    • BBPress Private Messaging 0.80
    • bbPress signatures 0.1.9
    • Censor 0.1 (modified to change slugs and titles)
    • Report Post 0.1.4
    • BBcode Buttons Toolbar 0.0.4 (with an edit to use input type=”button” instead of div)
    • BBcode Lite 1.0.1
    • Avatar Upload 0.8.3
    • Admin Can Post Anything 0.05
    • Forum is category 1.2
    • Temporary ban 1.0

    #66346
    Ben L.
    Member

    For #1, you can add the following to your style.css file as near to the bottom as possible:

    #latest th a, #forumlist th a, #favorites th a {
    color: #eee;
    }
    #latest th a:hover, #forumlist th a:hover, #favorites th a:hover {
    color: #eee;
    }

    For #2, I downloaded sv_SE.mo, and it does not have the words “Register or log in:”, “Log in »”, or “Remember me”. I don’t know how to edit MO files, so you’ll need to wait for someone who does.

    #66345
    781521
    Inactive

    wow..im an idiot. i searched for everything but the word anonymous. thanks for not verbally abusing me! :P

    #66339

    In reply to: (Weird) Open Cafe

    thion
    Member

    Thank you for kind comments :).

    As for these statistics, I guess it was _ck_ who posted this originally somewhere here, but I will repost it:

    <?php include_once("bb-includes/statistics-functions.php"); // This need to be included ?>

    Our <?php echo get_total_users(); ?> users have made a total of <?php echo get_total_posts(); ?> posts in <?php echo get_total_topics(); ?> topics

    #64543
    chrishajer
    Participant

    Sorry, lost this topic.

    Looks like you have a button already, it’s just in the wrong spot.

    1. Make sure your HTML tags are lowercase. This is what you have now:

    <FORM METHOD="LINK" ACTION="http://ashb.proofreadercentral.com/">
    <INPUT TYPE="submit" VALUE="ASHB Home">
    </FORM>

     

    Should be more like:

    <form method="link" action="http://ashb.proofreadercentral.com/">
    <input type="submit" value="ASHB Home" />
    </form>

     

    2. To have control over that, I would put it in a div, and give it a CSS id or class. Something like this:

    <div id="navbar">
    <form method="link" action="http://ashb.proofreadercentral.com/">
    <input type="submit" value="ASHB Home" />
    </form>
    </div>

     

    3. Now, with an id, you can make some modifications to your style.css. Something like this (add it right around the lines for the #header, since you’re still in the #header div):

    #navbar {
    position: relative;
    /* top: {number of pixels from the top of the header}; */
    /* left: {number of pixels from the left edge of the header}; */
    top: 100px;
    left: 0px;
    }

     

    Try different numbers in your style.css for the #navbar top and left positions you just added, and see where the button ends up. I’m not sure where you want it, but that will allow you to move it.

    If you want it beneath what is inside the header div, with the background image, you will have to move the code out of the #header div in header.php.

    Does that help point you in the right direction?

    #49655

    In reply to: Emoticons For bbPress?

    csseur3
    Member

    hello,

    where i can download the latest version of this plugin? :)

    bye

Viewing 25 results - 27,226 through 27,250 (of 32,463 total)
Skip to toolbar