Search Results for 'bbpress'
-
Search Results
-
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:
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”.
– 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!
Topic: bb press beginner
Topic: trunk or 0.9?
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!
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…
Topic: Cannot login – Uninstall?
Hope someone can help
installed bbpress OK but chose to change the URL from nexus1forum (this was where I created the bbpress folder/files) to nexusoneforum when offered the option to do so.
I just keep getting a 404 every time I try to login with my usual wordpress admin/password combination
http://www.nexusoneblog.co.uk/nexusoneforum/
Do i need to uninstall and start again?
Thanks !
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.