Forum Replies Created
-
In reply to: WordPress + bbPress Integration 101
I am having the same problems a Nekita. As soon as I ad the line
// require_once(‘pathto/wp-blog-header.php’);
to my bbconfig file
I cannot access my admin anymore… It takes away the ability to reply to posts too..
when I switch it back.. fine again. Its the same problem I was having before upgrading to BBpress 1 alpha..
Too bad… I had a perfectly integrated Theme BBPress/Wpress before I upraded WP to 2.6.1.. i Will look before I leap next time.. oooops.
In reply to: Pretty Permalinks Not Workingi got my pretty permalinks to work fine…. almost
http://www.djvibe.com/content/forums/
One little glitch though. I cant access any of my forums directly. It renames all of the forum links to /forum.
the links look like this:
ex. http://www.djvibe.com/content/forums/forum/
which returns an error.
My htaccess looks like this.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /content/forums/
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /content/forums/forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^forum/([^/]+)/?$ /content/forums/forum.php?id=$1 [L,QSA]
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /content/forums/topic.php?id=$1&page=$2 [L,QSA]
RewriteRule ^topic/([^/]+)/?$ /content/forums/topic.php?id=$1 [L,QSA]
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /content/forums/tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/([^/]+)/?$ /content/forums/tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ /content/forums/tags.php [L,QSA]
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /content/forums/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /content/forums/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /content/forums/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([^/]+)/?$ /content/forums/profile.php?id=$1 [L,QSA]
RewriteRule ^profile/?$ /content/forums/profile.php [L,QSA]
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /content/forums/view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([^/]+)/?$ /content/forums/view.php?view=$1 [L,QSA]
RewriteRule ^rss/?$ /content/forums/rss.php [L,QSA]
RewriteRule ^rss/topics/?$ /content/forums/rss.php?topics=1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/?$ /content/forums/rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/topics/?$ /content/forums/rss.php?forum=$1&topics=1 [L,QSA]
RewriteRule ^rss/topic/([^/]+)/?$ /content/forums/rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/?$ /content/forums/rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/profile/([^/]+)/?$ /content/forums/rss.php?profile=$1 [L,QSA]
RewriteRule ^rss/view/([^/]+)/?$ /content/forums/rss.php?view=$1 [L,QSA]
</IfModule>
can’t seem to figure it.. any help would be appreciated.
In reply to: *seamless* wordpress integrationAfter talking with the author of the tutorial I am going to create a separate CSS file that I can import into my WP CSS.. I think this is better because then it can be used as a starting point for others using the Themepress BBP Theme.. I think this should be integrated into the next release of Themepress..
In reply to: *seamless* wordpress integrationThere is a really good tutorial to integrate the WP + BBP seamlessly here.
http://www.adityanaik.com/integratepress-part-i/
It worked great for me and includes a Theme for BBP that integrates all WP functions into BBP and keeps the header and footer in tact… the only problem is that the BBP CSS is totally lost.. I am currently trying to create a Master CSS file that integrates the kakumei CSS in my WP CSS.. but my CSS skills are not exactly up to date… Ill keep you posted on how it goes…