Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 31,251 through 31,275 (of 32,491 total)
  • Author
    Search Results
  • #53982
    ear1grey
    Member

    The first google result for “IE7 border-bottom” gives the answer to this.

    I got it to work in IE7 by…

    1. changing all references from id="current" to class="current" (because I refuse to write semantically wrong css :) )
    2. replacing #current with .current { display: block; BORDER-BOTTOM: #2e6e15 3px solid; }

    #53981
    Null
    Member

    Even without the cleaner div it’s still not working in IE :(

    So it’s not the div…

    #52175
    Null
    Member

    Sure, I needed this for my bbPortal plugin (www.bbportal.org). The code for this is for the profilelink: get_user_profile_link($topic->topic_poster), for the poster name: get_topic_author().

    To be honest, I am not sure if this will work OUTSIDE the bbPortal plugin. If not, just check the plugin and perhaps you can strip it…

    Let em know

    Null

    #53979
    chrishajer
    Participant

    Null, I looked at your site. No underlines appear for me with IE7 either, whether hovering or not. So, I don’t think it’s the :hover pseudo class problem (and especially since the :hover is applied to <a> elements.

    It looks like the underline might be behind the #cleaner div in IE, where it’s on top of it in FF. Can you try making the #wrapper-menu taller and see if you can see underlines then? I am guessing they are there, just not visible since they’re behind the #cleaner div.

    Is there a tool comparable to the web developer extension for FF, on IE? I installed the IE Developer toolbar, but it does not give you the ability to modify the CSS and see the changes.

    #52078

    In reply to: Simply doesn’t work

    Tim Bowen
    Member

    I had a similar problem and found that putting this one line of code (and nothing else) in the .htaccess file did the trick:

    Options +MultiViews

    #52173
    Null
    Member

    This topic is old, fixed it ages ago :)

    #53004

    Hmm… I think I’m an egoistic programmer :D I just set my $where with = instead of .= … I’ll change it.

    Do you think this will fix it?

    #54042
    kineda
    Member

    thanks… I’ll go ahead and do that. :)

    #53977
    chrishajer
    Participant

    Is there a demo of it somewhere? I have no need to install it, so I can’t see the IE underline problem.

    Does it have anything to do with the :hover pseudo class? That can only be applied to <a> elements in IE before version 7. Not sure if that’s what the problem is. A demo would be helpful for me to see it without installing it, if possible.

    More about the IE :hover pseudo class

    #53976
    Null
    Member

    Quote I think your post may be corrupted: did you mean to say

    <li class= >

    ?

    Yes it got corrupted, <a class=> is what I ment.

    Btw to solve my ‘problem’ I am indeed going to use the switch thingy (read some more about it), so it will check some hardcoded “location” first and then check the db list. It’s kinda an ugly workaround, but normal users wont be bothered with this code anyway…

    Anyone has any ideas about the IE “bug” ??

    #54012
    chrishajer
    Participant

    I had a similar problem on bbpress.org/forums/, which resulted in a 408 timeout. I posted about that problem here.

    Thanks for the bump.

    #54031
    so1o
    Participant

    on the top of config.php add

    define('WP_BB', true);

    and

    require_once( '/absolute/path/to/wordpress/ config/file/wp-config.php');

    #53003
    davidbessler
    Member

    Problem: With forum restriction, I use the following code to filter topics with the default views:

    function forum_restriction_list_of_allowed_forums($user) {

    global $forum_restriction_allowed_in_forum,$bb_current_user;

    foreach ($forum_restriction_allowed_in_forum as $forum_number => $forum_memberlist){

    if (ereg(get_user_name($user),$forum_memberlist) || $forum_memberlist ==''){

    $list_of_allowed_forums .= "'".$forum_number."',";

    }

    }

    $list_of_allowed_forums = rtrim($list_of_allowed_forums,",");

    return $list_of_allowed_forums;

    }

    // FILTER TOPICS

    function forum_restriction_get_latest_topics_where( $where ) {

    if (bb_is_user_logged_in()) {

    global $bb_current_user;

    $list_of_allowed_forums = forum_restriction_list_of_allowed_forums($bb_current_user->ID);

    $where .= " AND forum_id IN ($list_of_allowed_forums) ";

    echo "where is set to: $where";

    return $where;

    } else {

    return $where;

    }

    }

    add_filter ( 'get_latest_topics_where', 'forum_restriction_get_latest_topics_where' );

    The problem is this doesn’t work with bb_custom_views used by since-last-visit.php. It seems the plugin changes the $where AFTER forum-restriction has already tried to filter the $where.

    How do I get forum_restriction_get_latest_topic_where to add ” AND forum_id IN ($list_of_allowed_forums) ” to $where AFTER since-last-post sets $where?

    Kapish?

    #50881

    In reply to: No Site Keymasters

    teknoseyir
    Member

    Hi, after upgrading to bbPress 0.75, we faced with this problem, too.

    The key master’s status had changed to administrator, and administrators’ custom titles had been reset.

    I’ve added the given code to config.php and applied bb-admin/install.php, and admin is again key master now. But in topics, key master’s link to his profile and his custom title cannot be shown now.

    #54010
    chrishajer
    Participant

    Still having this problem today. My database is on a different server. Maybe in most circumstances, it’s on localhost. Would mysql_connect() cause a delay where mysql_pconnect() would be more appropriate with the database being on a different server? Just asking: I had a problem with persistent connections causing about a 30 second delay with an application before, and the pconnect fixed that problem.

    Also, if you make two quick posts on one topic, the second one seems to go in quickly, without the 45 second delay. It appears normal.

    #1336
    kineda
    Member

    I’m trying to integrate WordPress 2.07 and bbpress 0.75, but I’m not having any luck! :(

    I’ve followed the instructions found here:

    http://bbpress.org/documentation/integration-with-wordpress/

    The following is a copy of my bbPress config.php file.

    <?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

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

    // What are you going to call me?

    $bb->name = ‘Hype’;

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

    $bb->admin_email = ”;

    // Set to true if you want pretty permalinks.

    $bb->mod_rewrite = true;

    // 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 = ‘e9a77fed10be’; // Example: ”

    // 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 = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

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

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

    /* Stop editing */

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

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

    ?>

    After setting the config file, I went through the install process for bbPress. Then I downloaded the following plugins: wordpress-integration.php (placed in my-plugins) and bbpress-integration (activated in WordPress and set table prefix to bb_)

    The only account that works through both logins is the admin account. When I check the tables for the bbPress database I see this:

    bb_forums

    bb_posts

    bb_tagged

    bb_tags

    bb_topicmeta

    bb_topics

    wp_usermeta

    wp_users

    I checked wp_users and there is only 1 user in the database.

    This is driving me nuts!!! Any help would be appreciated.

    #1335
    ralphdagza
    Member

    Someone told me that this might work..

    <?

    get_header();

    /* HTML Stuff here, if you need to */

    include "bbpress.here";

    get_sidebar();

    get_footer();

    ?>

    can someone PLEASE explain this to me.

    what should i put here? >> “bbpress.here”

    and another question, where is the place to install bbpress?

    subfolder? or subdomain?

    thanks

    #53974
    ear1grey
    Member

    I think your post may be corrupted: did you mean to say

    <li class= >

    ?

    #53973
    Null
    Member

    But then I will have <li class= > and They wont conflict?

    Btw the code you gave doesn’t work. They beta is the most stable I’ve got working correctly. So if you like to help me out, plz take a look at it. And yes the beta has the “wrong” id coding.

    #53972
    ear1grey
    Member

    Syntactically speaking: only if a page does not validate is it “wrong”.

    Semantically speaking: if a page uses id to encode semantic meaning then it is syntactically correct, but semantically naive (which for a “semantic personal publishing platform” is sub-optimal).

    There are possibly places where WP gets semantically wrong, but, a lot (possibly all) of this is down to theme and plugin designers who are often unaware of the semantic issues.

    Anyhow, your description in the opening post (two items returning “current” as their id) is something that will create a non-validating document, so it would be syntactically wrong.

    In summary: id is for addressing elements, class is for describing them.

    #53971
    Null
    Member

    Yeah I know about the id/class thingy, but even WP uses id instead of class. So why do they do that?. Are they wrong too? Perhaps I will change it in the official release, I just want to have it working first :)

    #53970
    ear1grey
    Member

    So, I think now you’re getting the function name “is_bb_search” (among other function names) from the db and you want to execute it to know if a particular list item should be marked as current.

    If that’s the case then it’s what I described before, which is something like where the function name is defined in $rw["location"] so…

    ...

    $page_location = $page->location;

    $switch = eval("return ".$rw["location"]);

    $current = ($switch ? ' class="current"' : "");

    echo "<li $current><a href="$page_id">$page_item</a></li>";

    ...

    #53969
    ear1grey
    Member

    …only the front page is id-ed as current as the forum link is active, while topic-page should return as current aswell, cause I want this page to be “under” the forum link as well…

    <grimace />

    If you do that (a) your page won’t validate and (b) there’s no guarantee of how the browser will interpret the content because HTML4 and XHTML specs require that element ID is unique in a page.

    From HTML4 spec:

    “id ID #IMPLIED — document-wide unique id —

    class CDATA #IMPLIED — space-separated list of classes —

    Yet another reason to use class="current". Using classes and ID’s appropriately is important.

    #54026

    Have you installed Simple Onlinelist 1.4? Without this, the posts since last visit plugin wont work at the moment …

    #53704
    chrishajer
    Participant

    Thank you mdawaffe :)

Viewing 25 results - 31,251 through 31,275 (of 32,491 total)
Skip to toolbar