Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 60,226 through 60,250 (of 64,428 total)
  • Author
    Search Results
  • #59554
    _ck_
    Participant

    I believe I have figured out how to trick the new trunk alpha version to handle non-query and special views thanks to Sam Bauers.

    I look forward to releasing in a day or so a trunk compatible version of “my views” along with my experimental “list installed plugins” (a public view of your bbpress plugins in use) and “all available bbpress plugins” (based on Sam’s powerful plugin browser class).

    #59869

    In reply to: Askimet as a plugin?

    _ck_
    Participant

    I’m kinda surprised that they didn’t just port the wordpress plugin.

    It has more features and given how Matt wanted to make bbpress so “light”, virtually everything should be optional.

    I guess they figured forums would be a huge target without any kind of captcha or turing test for signup.

    #2220
    _ck_
    Participant

    I’m still working on it when I have the time but what do you think of the 760px wide hybrid I made?

    http://bbshowcase.org/forums/?bbtheme=the-hybrid

    I find white/grey/green a bit bland so I will add some colour to it eventually but wanted a starting reference point that looked similar to both.

    #59871
    _ck_
    Participant

    Because I’ve got about a dozen projects going at any given time and if it doesn’t popup in my email or IM I usually miss it.

    (never have found an rss reader that I particularly liked either)

    I guess I could write a program that periodically scans my favorites and emails me when there is an update… but that would be a 13th project so my head would then explode… LOL!

    Ah, you know what?! Yahoo has an email-upon-rss-update notification feature that I can just plug the rss into, so I’ll just do that for now. I think it only scans once a day though.

    #59870
    fel64
    Member

    Why don’t you just use the RSS feed with RSS reader?

    #2219
    _ck_
    Participant

    Could they please consider using the favorites notification plugin?

    People are posting bug reports on my plugins and I am completely missing them because I don’t know to check.

    Maybe they can simply code the “extend” area to email the plugin author if there is a post on any of their plugin pages?

    #56754

    In reply to: Plugin: Avatar Upload

    LMD
    Participant
    #59251
    Null
    Member

    I kinda would like a page that loads all plugins made by me, so I can have a page on my website showing the plugins made by me with description and download button, just like ck’s page does.

    Can you release it as a (stand alone) plugin perhaps? As far as I know, SamBauers is admin only…

    #2217
    _ck_
    Participant

    Is there a way via config.php or similar to override the local path? I thought it was BBPATH but I tried forcing that to something different and it’s not working, it’s still looking at the old path for the templates?

    UPDATE: ah, I see the problem now. Even if you are using the default template, if you have changed your template and then changed it back to default, bbpress rememebers it as a custom template selection, not the default

    so in template-functions.php ~line 17

    if ( file_exists( bb_get_active_theme_folder() . $file) ) {

    it thinks there is a custom theme and tries to load it’s known path stored in the db, rather than looking at BBPATH

    For now I just deleted “bb_active_theme” from the topic meta table and it reverted to the default path off BBPATH, yay!

    A minor bug I can put into trac.

    #59250
    _ck_
    Participant

    It’s just a proof of concept for play. I wanted a list and “borrowing” your dataset seemed like the fastest way.

    If you changed how your class functions work it would break but I can make the source available to whomever wants.

    #59813
    Detective
    Member

    This is what i do in my sidebar (in WP and BB):

    <form action="<?php bloginfo('url') ?>/wp-login.php" method="post">
    <label for="log">Usuario<br /><input type="text" name="log" id="log" value="" size="22" /></label>
    <label for="pwd">Password<br /><input type="password" name="pwd" id="pwd" size="22" /></label>
    <input type="submit" name="submit" value="Ingresar" class="button" />
    <label for="rememberme"><small><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Recordarme</small></label><br />
    <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>"/>
    </form>

    #59812
    avatarx
    Member

    I just downloaded Firefox w/Firebug and looking at the message it appears to be related to another plug-in I am using. Otherwise I think it works fine, but it’s looking like more customization than I want to do right now for those behaviors I was talking about. I think I’ll just stick with what I have, but thanks to both for your help! I’ll provide a link to my site once it’s live, right now it’s kind of a mess. ;)

    #52079

    In reply to: Simply doesn’t work

    wazzupdude
    Member

    Options +MultiViews

    Did not work for me.

    I placed the .htaccess in the folder /forums (that is where the bbpress is installed. No luck. Tried placing it below the .htaccess at root used by wordpress. No Luck! I also copied the above stuff and put it at the root together with wordpress’s .htaccess, but no luck!

    I love your wonderful program. But I can’t get this thing to work.

    Can anyone help me please ?

    forums/bb-admin/rewrite-rules.php

    gave me this :

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /forums/

    RewriteRule ^forum/(.+)/page/([0-9]+)$ /forums/forum.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^forum/(.+)/?$ /forums/forum.php?id=$1 [L,QSA]

    RewriteRule ^topic/(.+)/page/([0-9]+)$ /forums/topic.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^topic/(.+)/?$ /forums/topic.php?id=$1 [L,QSA]

    RewriteRule ^tags/(.+)/page/([0-9]+)$ /forums/tags.php?tag=$1&page=$2 [L,QSA]

    RewriteRule ^tags/(.+)/?$ /forums/tags.php?tag=$1 [L,QSA]

    RewriteRule ^tags/?$ /forums/tags.php [L,QSA]

    RewriteRule ^profile/(.+)/page/([0-9]+)$ /forums/profile.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^profile/(.+)/([a-z-]+)$ /forums/profile.php?id=$1&tab=$2 [L,QSA]

    RewriteRule ^profile/(.+)/([a-z-]+)/page/([0-9]+)$ /forums/profile.php?id=$1&tab=$2&page=$3 [L,QSA]

    RewriteRule ^profile/(.+)/?$ /forums/profile.php?id=$1 [L,QSA]

    RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /forums/view.php?view=$1&page=$2 [L,QSA]

    RewriteRule ^view/([a-z-]+)$ /forums/view.php?view=$1 [L,QSA]

    RewriteRule ^rss/$ /forums/rss.php [L,QSA]

    RewriteRule ^rss/forum/([0-9]+)$ /forums/rss.php?forum=$1 [L,QSA]

    RewriteRule ^rss/topic/([0-9]+)$ /forums/rss.php?topic=$1 [L,QSA]

    RewriteRule ^rss/tags/([a-z-]+)$ /forums/rss.php?tag=$1 [L,QSA]

    RewriteRule ^rss/profile/([0-9]+)$ /forums/rss.php?profile=$1 [L,QSA]

    </IfModule>

    Thank you so much for taking the time to read this post.

    #55379
    drewstylz
    Member

    I have a variant of this problem.

    When I run my bbpress with a url through a directory under my domain (drewstylz.com/forums), using permalinks works ok. But when I try to run bbpress through a subdomain url (forums.drewstylz.com), the permalinks don’t work at all. They are generated correctly but clicking on any permalink only brings me to the forum home page. Running bbpress without permalinks does still work however.

    I’ve tried following the FAQ but neither of the options have worked. I do have wordpress installed in the root directory of my domain and bbpress in a subdirectory so I’m thinking that may be the issue but I don’t know which part would be affecting it. I’ve also tried renaming the .htaccess file in my root directory and then following the suggestions from the FAQ but when I disable the .htaccess file in the root folder, clicking on the permalinks just brings me to a “url not found” page.

    Does anyone have any suggestions on what I can do?

    I can post my .htaccess files if necessary. I’ve left my current bbpress configuration with the problem if anyone wants to take a quick look.

    http://forums.drewstylz.com/

    #59249
    Sam Bauers
    Participant

    > hmmm nice, i miss a download button

    You’ll find that in the original plugin. : )

    @ _ck_

    Is this just a proof of concept or are you planning to fork this plugin and start a new one?

    #59865
    monickels
    Member

    The problem was solved with this six-month-old post.

    #2215

    Topic: bbMenu 1.2 released!

    in forum Plugins
    Null
    Member

    Hi,

    Just released the last version of bbMenu. bbMenu 1.2 has some several bug fixes and minor code improvements:

    – bbMenu now uses the bb_admin_add_submenu hook

    – Fixed a bug that caused bbMenu to crash on some servers (thanks box87)

    – Some code cleanup and optimalisations (thanks box87)

    – Some template changes. If bbMenu is deactivated, the header now adapts and wont crash

    Note that bbMenu 1.2 is not compatible with bbPortal 1.2 and bbPress pre 0.8

    This is also the last version I release using the prototype libary. The next version will be jQuery based and smaller in size.

    You can download bbMenu 1.2 here:

    http://www.bbportal.org/bb-downloads/bbmenu1.2.zip

    #59856
    vlp
    Member

    I’m sorry, I confused little myself too:)

    Ok here is the deal

    Because the bbpress profile page doesn’t work, I want to show user favorites on wordpress profile page (the best on separate page – tab), like Extended Profile from Userextra plugin.

    #59855
    so1o
    Participant

    vlp..

    you said you want to show the favorites in the wordpress profile.

    http://www.tasty.sk/forum/profile/username/favorites

    this is the link to the bbpress profile page.

    i am confused now :) can you try to explain again what are you trying to do?

    #59852
    vlp
    Member

    So if I understand right, I should use this code as a WP plugin?

    I tried that and I get an error:

    Warning: Invalid argument supplied for foreach() in /home/tasty.sk/tasty.sk/www/wp-content/plugins/bbpress-favorites.php on line 30

    It is shown in profile main page…it is possible to create another separate page for that?

    #59248
    Null
    Member

    hmmm nice, i miss a download button :) (in the plugin list to download the latest files)

    #59247
    _ck_
    Participant

    Thought you might like what I re-used your nifty class for:

    http://bbpress.nfshost.com/forums/view/available-plugins

    Makes a public (sortable) list of all available bbPress plugins.

    (Well at least the ones that are in the SVN)

    Be sure to click on the headers for javascripty-goodness.

    (this also shows off my little technique to make “views” output any page you want without hacking the core at all)

    #59626

    In reply to: AdityaNaik.com

    so1o
    Participant

    no. Its gravatar for wordpress integrated for bbpress

    #56546

    In reply to: Strut Your bbPress!

    yooakim
    Member

    The Swedish artist Markus Faervall is using bbPress on his site:

    http://markusfagervall.se/forums/

    No changes at all but a bit of traffic.

    #58456
    _ck_
    Participant

    If you can get to “/forums/bb-admin/” (replace forums with whatever you called it) it might be your cookies.

    You need to make sure your cookies are all pointing to the root of your website for both bbpress and wordpress. By default they are not so it’s probably preventing login?

    See here:

    https://bbpress.org/forums/topic/wordpressbbpress-single-sign-on?replies=22#post-9010

    and

    https://bbpress.org/forums/topic/cookie-integration-for-wordpress?replies=3#post-6496

    and a few other threads if you search for “cookies”

Viewing 25 results - 60,226 through 60,250 (of 64,428 total)
Skip to toolbar