Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 46,126 through 46,150 (of 64,477 total)
  • Author
    Search Results
  • #84259
    Dailytalker
    Member

    Dear Gautam

    I tried out the htaccess-code which is posted on technospot.net. It works for the forum and the member profiles but I cannot enter the admin backend anymore. Do you have an idea how to solve that problem?

    The following link is not working anymore:

    http://www.domain.com/forum/bb-admin/index.php

    When I add the following peace of code (just something I creaded by myself) :

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

    It gives me the following link:

    http://www.domain.com/forum/bb-admin/

    So, it doesn’t work because “index.php” is missing.

    Do you have an idea how I can get this link with “index.php”?

    PS: You already mentioned that problem on your blog….bud maybe you found a solution meanwhile.

    #81831
    tonicarr
    Member

    Being the tiny web developer I am, this is all very confusing and I am having a difficult time trying to figure out if bbpress is worth my time to try and configure and sell to my clients. This is getting very frustrating, I wish someone that is in the know, (instead of all this hear say) would just come out and say what is going on with the product so that we can move on.

    #84293
    Ben L.
    Member

    This is the bbPress forum, so I’m assuming you got your words mixed up – The bbPress function documentation I always use is at http://phpxref.ftwr.co.uk/bbpress/

    (If you really meant WordPress, look at http://phpxref.ftwr.co.uk/wordpress/ )

    #81830
    Dailytalker
    Member

    There are already some discussions in this forum about fb-connect. Some people say that there are already some wordpress-plugins which could easily be adapted for bbpress. Some other say that if bbpress is integrated in wordpress the wp-plugin could also work for bbpress…I tried some wp-fp-connect plugins out…but had some problem. But I am not a coder so I have often problems with such things.

    On the other hand a coder could just have a look at the wp-plugin look how it works and than customize it for bbpress.

    #79829
    Dailytalker
    Member

    For security reasons I don’t want integrate bbpress into wordpress. There is no need to use facebook connect for the blog. I just need facebook connect for bbpress. I have an own Facebook API and want to connect my fb-fanpage with bbpress. Unfortunately I have no idea how to do it.

    #81829

    The same for fb-connect. An expert could solve the problem within minutes.

    What you using as a basis for this statement mate?

    #84258
    Gautam
    Member

    Use the htaccess bundled with the plugin. The source can also be found here – http://www.technospot.net/blogs/how-to-remove-forum-and-topic-keyword-from-bbpress-url/

    Gautam
    Member

    No…

    #81827
    Dailytalker
    Member

    What about bbpress 2.0?

    http://bbpress.wordpress.com/files/2009/07/forum-front-page.png

    I think that most of the common problems could be handled in 1 week.

    Most recent problems I have with bbpress:

    1st I need seo-optimized permalinks. (without “forums” and “topic”)

    2nd I need a facebook connect option

    3rd Ineed a cool template simliar to sam bauers bbpress 2.0 template.

    Whit this I would be happy.

    There where only some attemps to solve the problem with the permalinks. There is also a plugin for this but there are some small problems which an expert could solve within minutes. The same for fb-connect. An expert could solve the problem within minutes.

    Regarding the bbpress 2.0 template I don’t now how long it could take to get it work. But with that bbpress would be excellent.

    For most other things there are already some plugins…some just need to be updated to the current bbpress version. Thats all. (in my view.)

    #77312
    Dailytalker
    Member

    The bbpress 2.0 template looks nice.

    http://bbpress.wordpress.com/files/2009/07/forum-front-page.png

    The new order with the forums on the left site and the recent discussions on the right site is excellent. Hope that it will be published soon.

    #84257
    Dailytalker
    Member

    Well the support here is very poor. When you ask something you hardly ever receive help. Sometimes you even get an impolite answer. Is this the way you guys try to get new bbpress-fans?

    There was already the same kind of treatment when I asked for a way to install a facebook connect option. Answer was: It’s no priority and therefore no help.

    DKB
    Participant

    Yes, i know but i want to place it not only at the bottom, but to select the place in a post.

    #77311
    Gautam
    Member

    @Sam

    Why don’t you attend a meetup on wednesday on IRC and put forward the point of the new design? I really love that one and also tried to copy some bit of it.

    #77310
    hpguru
    Member

    Why anyone don’t ask? Design is pretty good!

    Gautam
    Member

    When you upload an image, you see it at the bottom of the post.

    #77309
    Sam Bauers
    Participant

    I still have the files for this design, I don’t think anyone ever asked me for them when I left Automattic.

    I think there are bigger plans for WordPress.org now that supersede this work, especially if bbPress becomes a canonical plugin.

    Dailytalker
    Member

    I’d like to remove “forums” and “topics” from bbPress permalinks.

    This looks ugly:

    http://domain.com/forums/forum/name-of-forum/

    http://domain.com/forums/topic/title-of-topic/

    Therefore I want this:

    http://domain.com/forum/name-of-forum/title-of-topic

    Therefore I downloaded a plugin and followed the steps described on this website:

    http://blog.markroberthenderson.com/getting-rid-of-forums-and-topic-from-bbpress-permalinks-updated-plugin/comment-page-1/#comment-37

    Unfortunately I don’t get it work. I think there are some mod rewrites missing. Unfortunately I am not a mod rewrite expert. Is there anybody who could help me?

    Thats the htaccess code which works with the ugly url:

    # BEGIN bbPress

    Options -MultiViews

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /forum/

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

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

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

    RewriteRule ^forum/?$ /forum/ [R=302,L,QSA]

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

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

    RewriteRule ^topic/?$ /forum/ [R=302,L,QSA]

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

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

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

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

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

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

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

    RewriteRule ^profile/?$ /forum/profile.php [L,QSA]

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

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

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

    RewriteRule ^rss/topics/?$ /forum/rss.php?topics=1 [L,QSA]

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

    RewriteRule ^rss/forum/([^/]+)/topics/?$ /forum/rss.php?forum=$1&topics=1 [L,QSA]

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

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

    RewriteRule ^rss/tags/([^/]+)/topics/?$ /forum/rss.php?tag=$1&topics=1 [L,QSA]

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

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

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^.*$ /forum/index.php [L]

    </IfModule>

    # END bbPress

    Thats the htaccess code which should make pretty urls:

    # BEGIN bbPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /forum/

    Options +FollowSymlinks

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    RewriteRule ^page/([0-9]+)/?$ ?page=$1 [L,QSA]

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

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

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

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

    </IfModule>

    # END bbPress

    Whats missing in the second htaccess code? It must be something with “page”, “forum” or “topic”.

    wp.rook
    Member

    – I put BBPress into a folder called /forum off of the root.

    – WordPress is on the root.

    I am trying to use the same database to install BBpress into as WordPress.

    I’ve checked with host and my DB name, username, password are all correct. I’ve also copy pasted the DB Host into the advanced settings field.

    I still get a msg back that there was a problem connecting to the database. Any suggestions? The only thing I can think of is I’ve installed in a folder that I shouldn’t have? Or I need to specify a path or something?

    any help is much appreciated! :)

    #32775
    cyb3
    Member

    hello! i am a beginner at bbpress. I want to create a message board on my website. I’ve been referred to bb press. But as much as i look thru this site – i just do not understand.

    I installed the bbpress plug in, and and activated it.

    But – i do not comprehend – what is WordBB Options — what is myBB URL and MyBB absolute path on server?

    I just am aiming for a simple message board on the bottom of my site…can you please help?

    http://www.thecybillakeshow.com

    #84037

    It seems that there is an easy way to do that.

    Add the text in options at tagline and call the code on front page only:

    <p>

    <?php if ( bb_get_option(‘description’) ) : ?><p class=”description”><?php bb_option(‘description’); ?></p><?php endif; ?>

    </p>

    I also have put together an small plugin which could offer an WYSIWYG editor for formatting purposes.

    #77308
    Erlend
    Participant

    There have been talks about retrieving Sam’s work and getting it done, but I doubt it’s a priority. Consider it to be planned for ‘further down the road’.

    bbshowcase is not an official part of bbPress (i.e. no direct affiliation with Automattic); I believe it was once maintained by an active bbpress community member and plugin contributor, who sadly does not think as highly of the project any longer.

    #83795
    adevigus
    Member

    how can you integrate the bbpress forum in your wordpress site ??

    DKB
    Participant

    Hi Gautam,

    I have some problems with the placements of the images in a post. Is it possible to determine where a image appear in a post?

    Thanks, DKB

    #77307
    gasface
    Member

    Is this still being worked on?

    Whats up with this?

    http://bbshowcase.org/forums/

    #84243
    stuka
    Member

    Thank you very much Michael! I was thinking that no one was watching for us here.

    Glad to know that the BBpress community isnt dead. I’ve just installed it and im loving it!!

    http://www.mmoplayers.com.br/mmobrasil/

Viewing 25 results - 46,126 through 46,150 (of 64,477 total)
Skip to toolbar