Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 6,101 through 6,125 (of 6,774 total)
  • Author
    Search Results
  • #66597
    _ck_
    Participant

    bb_location is not called by default but still is typically used on every page. It’s easier to track the request_uri and store it with the title (formal name) of the page since bb_location does not track all pages (ie. edit and topic pages are the same, all views are the same, etc). My User Track plugin does this but it’s not available to the public yet.

    bbPress does not use sessions by default (because they slow the system). But there is no need to use them, you can assume after 30 minutes since the last page load the user has left the site. Most tracking plugins work like that.

    update: here you go:

    https://bbpress.org/plugins/topic/mini-track/

    #66416
    _ck_
    Participant

    Oh shoot, you are correct, I allowed them in the end by default. I might remove that.

    update: oh wait, BMP is only allowed for admin, no one else has that allowance – so it’s not an issue, I forgot I did that. The reason you got “denied mime” is because it’s a bug where I didn’t add “image/bmp” to the allowed mime types for admin. I’ve reposted 0.1.9 with that fixed.

    But that’s a strange error I need to explore on the png. Apparently “Error Occurred While Processing Request” is a mysql error? Interesting.

    Did the filename have any strange characters? Quotes? Apostrophies? Unicode?

    #66414
    _ck_
    Participant

    BMP is not an allowed mime by default because they tend to be huge and uncompressed. You can force it to be allowed though by adding it to the mime (and extension types).

    This bug bothers me though, if you can give me steps to reproduce it that would be very helpful:

    [png] Error_Occurred_While_Processing_Request.png (17.7 KB, 0 downloads) [x]

    Did it happen when you uploaded a PNG and a BMP at the same time?

    #66587
    chrishajer
    Participant

    You only need to share databases to have integrated user logins. If you just installed WordPress, it’s probably 2.6, which is not compatible with bbPress at the moment, so you do not want to attempt this right now anyway.

    The difference is, when you share a database, is that bbPress will use the wp_user and wp_user_meta tables for it’s users, rather than creating bb_user and bb_user_meta tables.

    If you don’t care about logging in in bbPress and being logged in in WordPress, and vice versa, then you don’t need to shared the tables.

    If you don’t do an integrated installation (sharing of the wp_users and wp_user_meta tables), then you can just use a different table prefix (by default WordPress uses wp_ and bbPress uses bb_) in the same database and not worry about a thing.

    This is the best documentation I know of:

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

    #66545
    _ck_
    Participant

    I think you asked this on the IRC channel but I will also answer here to help others.

    PHP is not processed in style.css (unless you force your server to, and that’s not recommended)

    However you can edit your theme’s header.php and create an additional “inline” stylesheet like so:

    <style>
    body {background: url("<?php echo $_SERVER['REQUEST_URI']; ?>/wp-content/themes/default/images/background.gif") repeat-x top;}
    </style>
    </head>

    (note that </head> at the end, it’s meant to indicate you should put that code at the end of the <head></head> section)

    Also, more importantly, $_SERVER['REQUEST_URI'] is not going to be the variable you want. Probably more like $_SERVER['DOCUMENT_ROOT'] and you’ll have to add the path to wordpress too.

    #3727
    csseur3
    Member

    Hello,

    i want to add in my css an image of the /wp-content folder of my blog, like:

    background: url(“<?php $_SERVER ?>/wp-content/themes/default/images/background.gif”) repeat-x top;

    but doesn’t work. why ?

    bye,

    Fred

    #66531
    csseur3
    Member

    i think the doctype of default skin is bad,

    i use: <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”&gt; and i have no errors and no warnings :)

    ++

    #3719
    csseur3
    Member

    I think the default theme have a problem:

    Conflict between Mime Type and Document Type

    The document is being served with the text/html Mime Type which is not a registered media type for the XHTML 1.1 Document Type. The recommended media type for this document is: application/xhtml+xml

    This is the error when i try to validate it for the w3c validator.

    Why?

    Fred

    #66445
    chrishajer
    Participant

    https is *not* the default protocol when installing bbPress. What gives you the idea that it is? Was a field pre-filled with a https:// value? Did you navigate to the installer from an https page? Or is the link to bbPress coming from an https page?

    Just change it to http:// unless you have an SSL certificate and require the security.

    Oops – edited after _ck_’s message below.

    #3698
    RossB
    Member

    I have a navigation button on my website linking to a bbPress forum, which works fine in IE, but won’t work in Firefox. Apparently it is a security issue.

    My host Support has advised that changing the bbPress URL from https protocol to http will resolve the issue, but I’m wondering why https is the default protocol when you install bbPress?

    I am aware that https ensures security for exchange of credit card info etc, but in the case of my forum, there won’t be any such security issues as far as I know. The forum is just a place for students to post research proposals and the like, and feedback to each other, and for their lecturers to do likewise.

    Does anyone know, please, if there is any reason I should NOT change the forum URL from https to http?

    #66015
    _ck_
    Participant

    Hmm, is this the default in WordPress? define('COOKIEHASH', md5($_SERVER[HTTP_HOST]));

    does that actually appear in wp-config.php by default? Because that would override the cookiehash calculation. Make sure then you have this in your bb-config.php

    define('BB_HASH',md5($_SERVER[HTTP_HOST]));

    also, since you are trying to do “full” (complex) integration. You may want to see here for more ideas: http://www.adityanaik.com/integratepress-part-i/

    #49658

    In reply to: Emoticons For bbPress?

    _ck_
    Participant

    The plugin currently allows you to change the smilie “set”.

    I intend future versions to be able to use multiple sets at the same time.

    If you want to make your own sets, just look at how the default folder is done and build your own. There is a single PHP file to edit.

    #66335
    _ck_
    Participant

    topic_time is meant to be used in topic loop, not a forum loop so it doesn’t know the last topic id.

    You could get around this by passing the last topic id in the topic_time however you’d have to do a custom query to determine the last topic in a forum, as it’s not stored/available by default.

    I think I’m going to make this into a plugin “forum_last_poster”

    update: I seem to have finally made it work!

    RossB
    Member

    Oh yeah, I do already use Google’s reader – but you can’t actually subscribe to a site from within that, can you? And I have tried Firefox – I use it spasmodically. It’s illogical and even stupid of me, but I am so used to IE I find myself opening it up by default, as it were. No question, it is inferior to Firefox.

    #66313
    chrishajer
    Participant

    The closest thing I know of is “Comment Quicktags”:

    https://bbpress.org/plugins/topic/quicktags-4-bbpress/

    I think a WYSIWYG editor would be overkill since a lot of the markup is not allowed by default. I suppose you could disable the buttons that use non-valid markup.

    Or, these forum posts:

    https://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress

    https://bbpress.org/forums/topic/bbpress-wysiwyg-status

    #66332
    _ck_
    Participant

    I highly doubt anyone else is working on it, it’s a very complex plugin. Not something I would even try to tackle – go for it Nightgunner5.

    #66331
    Ben L.
    Member

    “Also, the plugin (the original and my modded version) is completely unorganized. It should be rewritten …”

    If nobody else is already remaking it, I could make it my next project.

    Is anyone working on a remake of Private Messaging?

    #66322
    _ck_
    Participant

    I think you are missing the point that some people don’t want such features (for example, me) on their forums and by keeping it plugin based it can be an option instead of forced.

    #66297
    775251
    Inactive

    One other quick note. I just tried to view the default forum stylesheet in my browser, so navigated to:

    http://mysite.com/forums/bb-templates/kakumei/style.css

    And again was redirected to my blog’s homepage. I’m confused as to why this is happening?

    #66330
    Detective
    Member

    Also, the plugin (the original and my modded version) is completely unorganized. It should be rewritten …

    #66329
    _ck_
    Participant

    bbPress will never have a feature like that built-in.

    #3669
    csseur3
    Member

    What do you think about integrate the private message by default? :)

    http://bbpress.org/plugins/topic/private-messages/#post-43

    #3668
    csseur3
    Member

    I think it is important to have a memberlist in a forum, so, why don’t integrate the plugin by default?

    see: http://faq.rayd.org/memberlist/

    bye

    #3666
    csseur3
    Member

    Hello,

    in the default theme, i see the link for the profile is on the title “admin”, etc.. but this is correct? i think no! I think it is more normal to have the link of the profile on the name of author, no?

    How to change that?

    bye

    #3660
    775251
    Inactive

    During step 3 of the installation process, I accidentally inputted the wrong URL for my forum.

    It asked me for the Site address (URL), which was defaulted to:

    http://mysite.com/wp-content/plugins/bbpress/

    I changed this to

    http://mysite.com/forums/

    Now I can’t access the forums at all, and I can’t figure out how to change the URL back. I looked at bb-config.php, but didn’t see any way to fix this.

    I’m not good with PHP and I’m new to WordPress in general, so any novice advice would be much appreciated!

Viewing 25 results - 6,101 through 6,125 (of 6,774 total)
Skip to toolbar