Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 46,176 through 46,200 (of 64,511 total)
  • Author
    Search Results
  • 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/

    #84242
    Michael
    Participant

    Install this plugin, and modify it as needed:

    https://bbpress.org/plugins/topic/front-page-topics/

    #84230
    johnhiler
    Member

    There should already an RSS feed for all posts to your site!

    Here’s the link to the one for this forum:

    https://bbpress.org/forums/rss

    I think I found your forum – in which case, this should be the RSS feed for all your posts!

    http://wp.bikeaway.info/bbPress/rss

    #32913

    Topic: trunk or 0.9?

    in forum Installation
    eduardosilva
    Participant

    Hello,

    I’m planning to start a new forum based on bbpress.

    My only problem is that the actual version (1.0.2) doesn’t have email notification working (topic subscription) working.

    My idea is to install the latest 0.9 version and add some plugins for email notifications. But at the same time I saw that the trunk version already have this feature implemented, so I’m wondering if I should go with trunk version and them change to the stable version when this feature is implemented or if I should stick with 0.9.

    What do you think about this?

    Thanks inadvance!

    #75704
    gasface
    Member

    “Make sure you have inserted the code.

    Refer to the installation notes you should have got with your download. “

    The notes refer to files that dont even exist in the newest release.

    ie. there is no “post.php”

    #32745
    ipunkbali
    Member

    Can anyone help me, please?

    Im willing to give reward $$ if anyone can fix / reinstall my wp x bbpress integration

    I’ve been trying to integrate wp and bbpress in almost 3 weeks, and I still have lil problem. If you have ever integrated wp and bbpress, or you own bbpress forum, im sure its very very easy. It just that im not a techy person. So i have no clue. I’ve seen so many people here show of their forums, and they can marry the two perfectly.

    my bbress forum is justinbieberzone.com/forums, and the blog is justinbieberzone.com

    I believe I have already (deep) integrated the two, because wp and bbpress have succesfully shared my 100+ blog members. However, there’s something wrong with the theme. The background supposed to be very dark like the main site, after integration, it turned out white.

    Also, theres something missing, in the forum page, there is no login and register button/link.

    Can anyone help me please? Im willing to give reward $20. I know its not much, but im so desperate right now. If its too difficult for u, i can increase $$ litte bit.

    email or messenger me at ipunkbali [at] yahoo.com please please.. thank youuu…

    #83909

    In reply to: Plugins

    paamayim
    Member

    Up.

    Do anyone know a solid plugin to parse bbCode ( , , … ) per the latest version of bbPress?

    I have just tested it on a separate server and I get the same error.

    I did the same: installed a fresh BBpress. Created database and user for it in backend, went to: http://domain_name/bbpress/bb-admin/install.php and the page shows up correctly. I insert the connection info and connects successfully.

    When I press go to step 2, I get the same error:

    Parse error: syntax error, unexpected T_LNUMBER in /home/domain_name/www/www/bbpress/bb-includes/backpress/class.wp-http.php on line 281

    I will try on my localhost, but for me seems that the bbpress installation folder is corupt!

    chrishajer
    Participant

    I guess no one has seen it before. The only information I can find about that error is from Google, and not pertaining to bbPress.

    The only servers it’s buggy on are localhost installations and some WAMP servers, with PHP 5.3. Other than that, it normally works just fine.

    #84214
    chrishajer
    Participant

    If you’re using pretty permalinks, the rewrite rules in your .htaccess will need to be changed:

    https://bbpress.org/forums/topic/404-errors-on-forumstopics#post-63566

    There is also a way to override the information in the database by adding it to your bb-config.php:

    https://bbpress.org/forums/topic/bbpress-broke-when-i-changed-the-url#post-63392

    #83959
    Sam Bauers
    Participant

    Remember the “its all fine so I made a BBpress Fan Page on Facebook”?

    Yeah, I remember.

    #84117
    Anonymous User
    Inactive

    Hi Thomas,

    if you have some deeper knowledge in php, mysql and regular expression – you can use the phpbb3 converter and make some change to the code. The code of the phpbb3 converter is understandable – you only must change the tables and row to match the database structure of the Woltlab Burning Board. Its only the question of understanding …

    https://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release

    Greetz

    Markus

    #84116
    Michael
    Participant

    I see – I’m assuming you’d have to move everything manually using PHPMyAdmin – though you would need to know the format of the bbPress MySQL Database.

    Is it a big issue to restart with a blank, fresh forum?

    #84210
    johnhiler
    Member

    It looks like someone has built a *press module/plugin of some sort which allows users to vote on compatibility:

    https://wordpress.org/extend/plugins/stats/

    But nothing like that exists on the bbPress plugins side of things.

    The bbPress Plugins install actually has a separate signin cookie from the forums – even if you’re signed in on the forum side of things, you won’t be signed in here:

    https://bbpress.org/plugins/

    Plus, the “stats” tab has been “Coming Soon” for at least two years:

    https://bbpress.org/plugins/topic/delete-all-bozos/stats/

    All these things exist on the WordPress side of things, so I’m guessing it’s a matter of lack of resources and/or a lack of prioritization.

    #32902
    #82030

    In reply to: New Theme For BBPress

    bedbugger
    Participant

    arpowers,

    Your system requirements state that your bbpress themes can only be used with your corresponding blog themes. Is this true? Or could they work alongside another theme?

    Also, have they been tested with IE5 and IE6 (I know, I know… don’t ask.)

    Thanks!

    #32891
    fredtechno
    Member

    Having to re-post due to forum marking original post as [array] and then as closed!:

    Hello,

    I’ve been using bbpress forums for around 2 weeks now and I’m very impressed with it.

    However: during the weekend a young child with basic mouse skills got to my office and did something to my Admin page. Now when I attempt to view my forum I get the following error:

    Not Found

    The requested URL /bb-login.php was not found on this server.

    Can anyone please help me fix this without having to re-install the forum?

    Many thanks,

    Fred.

Viewing 25 results - 46,176 through 46,200 (of 64,511 total)
Skip to toolbar