Search Results for 'bbpress'
-
AuthorSearch Results
-
August 13, 2010 at 3:22 pm #92751
pagal
ParticipantHi MPESGT01
I’ve an Idea, I hope you’ll like it.
You MUST consider WP and bbPress for your whole project. With this you can do everything….
An Awesome WP Theme for your info pages, blogs etc.
A seamless bbpress forums for discussion.
They can be integrated for Shared users, Database and Cookies Easily…
For Gallery
Never use Menalto for gallery. its out dated and less features and will be really hard to integrate it with your WP. Its my experience.
My Solution:
There is a really awesome / outstanding plugin for Picture Gallery. And It will definitely meet your requirements. I personally love this author’s work.
It’s PhotoSmash
Users can upload photos, for videos you can ask in his forums.
This gallery plugin is really really good, I can’t stop to write about it.
Dozens of cool features And…………….
Best of Luck,
Pagal
August 13, 2010 at 3:18 pm #92678In reply to: Registration Email
chrishajer
ParticipantPagal, you’re right: it’s not what we call integration. But other people have put their bbPress in an iframe to get it on their site. Your comment does not help answer the initial question at all. TangoTooL is looking for a way to change the text in the email confirmation message. Your comment is off topic.
August 13, 2010 at 10:15 am #76420In reply to: bbPress plugin September 15?
kevinjohngallagher
MemberYo _ck_,
We also have a history of major changes in 0.1 releases. We might indulge in a little bit of inflation with a 2.0.
-matt
Matt didn’t give anything firm, or if he did , its in another discussion

https://bbpress.org/forums/topic/bbpressorg-for-standalone-and-talkpressorg-for-plugin#post-71339
August 13, 2010 at 8:16 am #76419In reply to: bbPress plugin September 15?
mikkelsen
MemberJohn;
I appreciate that, and there is no crisis, but it would be great if you could keep us updated on this site going forward
August 13, 2010 at 8:10 am #91952extremejacob
MemberOkay, figured out that two .htaccess files are okay. This is what I have in public_html/forum/
# BEGIN bbPress
Options -MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^page/([0-9]+)/?$ /index.php?page=$1 [L,QSA]
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^forum/([^/]+)/?$ /forum.php?id=$1 [L,QSA]
RewriteRule ^forum/?$ / [R=302,L,QSA]
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=$1&page=$2 [L,QSA]
etc.
These rules seem to stay the same regardless of what kind of permalinks I set. Does that make sense?
As mentioned in the post at the top: The front page works fine. All the links are broken in named-based permalinks, but work fine with “None”.
August 13, 2010 at 7:02 am #92723In reply to: 500 error when searching
kai920
MemberI am using the default theme Kakumei (sp?). I don’t see any other errors of note in my MAMP log, and the Bluehost error log I don’t see anything useful either…
You know what, I disabled nicer permalinks (on localhost) and it seems to work now, so this plugin may be the culprit.
Could it be a conflict because my bb-press is installed in /forum?
Here is what my .htaccess looks like when Nicer Permalinks is enabled:
# BEGIN bbPress
Options -MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
# /forum/ and bb_get_option( 'path' ) must match
RewriteBase /forum/
Options +FollowSymlinks
# admin stuff, not processed
RewriteRule ^bb-admin/.*$ - [L,QSA]
RewriteRule ^page/([0-9]+)/?$ ?page=$1 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&tab=$2&page=$3 [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/([^/]+)$ profile.php?id=$1 [L,QSA]
RewriteRule ^profile/$ profile.php [L,QSA]
RewriteRule ^rss/forum/([^/]+)/topics/?$ rss.php?forum=$1&topics=1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/?$ rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/profile/([^/]+)$ rss.php?profile=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/topics/?$ rss.php?tag=$1&topics=1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)$ rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/topic/([^/]+)$ rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/view/([^/]+)$ rss.php?view=$1 [L,QSA]
RewriteRule ^rss/topics/?$ rss.php?topics=1 [L,QSA]
RewriteRule ^rss/?$ rss.php [L,QSA]
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 ^view/([^/]+)/page/([0-9]+)/?$ view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([^/]+)$ view.php?view=$1 [L,QSA]
# forums
RewriteRule ^([^/]+)/page/([0-9]+)/?$ forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^([^/]+)/$ forum.php?id=$1 [L,QSA] # tailed '/' is mandatory for forum URIs! Props: Mohta
# topics
RewriteRule ^([^/]+)/([^/]+)/page/([0-9]+)/?$ topic.php?id=$2&page=$3 [L,QSA]
RewriteRule ^([^/]+)/([^/]+)$ topic.php?id=$2 [L,QSA]
# other pages
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [L]
</IfModule>
# END bbPressAugust 13, 2010 at 3:06 am #92569In reply to: lost bbPress user roles, all set to inactive
SusanJohnstone
MemberThanks Kev! It appears my students are back in and able to post as well, so I’ll mark this mystery as resolved (but far from solved!)
August 13, 2010 at 2:48 am #76418In reply to: bbPress plugin September 15?
John James Jacoby
KeymasterI don’t even know what to say right now.
I want you all to know I’m reading everything, but I’m speechless.
@_ck_ I think that’s a good idea. Anything to minimize confusion.
August 13, 2010 at 1:40 am #92720In reply to: 500 error when searching
kai920
MemberbbPress 1.0.2
PHP 5.2.13
MySQL 5.1.47-community-log
As for plugins, these are installed and activated:
Allow images
BBcode buttons toolbar
BBcode Lite
bbPress Smilies
Check for Updates
Hidden Forums
Hot Tags Plus
Nicer Permalinks
Related Topics
Support forum
Unread Posts
August 12, 2010 at 11:04 pm #92665In reply to: Switching URL to a subdomain
zaerl
ParticipantAugust 12, 2010 at 10:50 pm #35041Topic: Switching URL to a subdomain
in forum Troubleshootingextremejacob
MemberI tried looking around for a solution, but I only found enough info to mess my system up slightly. I think I am missing one crucial part of the solution.
I have installed bbpress as
website.com/forum
with a folder
public_html/forum
This works great.
However, I want to move this to a subdomain like this
forum.website.com/
If I make such a subdomain on my host, this will also use the public_html/forum folder. So far so good. (I used my host’s cpanel for this, no redirects.)
I went to Admin/General Settings and changed the URL from
website.com/forum/ to forum.website.com/
What happens then is the all the forum names come up and you can log in, but the posts are gone. Also, I get a lot of 500 errors.
I use name-based permalinks. (I suspect the problem may have something to do with this?)
I figure I need to do some 301 redirects in my .htaccess for whenever someone has ahref’ed a forum post, that’s no problem—I’ll do that later.
The problem right now is that I can’t see the forum posts anymore?!
It’s like some of the databases work but others (the post) do not.
Did I do something wrong or am I missing something?
August 12, 2010 at 9:27 pm #92719In reply to: 500 error when searching
chrishajer
ParticipantWhat plugins are you using, and what version of bbPress, PHP and MySQL?
August 12, 2010 at 7:19 pm #92710In reply to: Community Server to bbPress
zaerl
ParticipantThere isn’t a converter for bbPress neither for more advanced and used forum software (e.g. phpBB) as far as I know. You must write one.
August 12, 2010 at 4:17 pm #35050Topic: Community Server to bbPress
in forum Requests & Feedbackjebro
MemberThis might be a really obsure question.
I have a huge MSSQL database from Telligent’s Community Server. Anyone know of a reasonable way to convert all this data into a bbpress MySQL database?
August 12, 2010 at 12:34 pm #92702pagal
ParticipantIn which bbpress file?
Which Line?
August 12, 2010 at 12:17 pm #76417In reply to: bbPress plugin September 15?
_ck_
ParticipantDidn’t Matt agree to call it
2.0instead of1.2as a compromise to try to somewhat reduce the massive confusion that is going to happen?This forum is about to become a complete jumble of 1.2 vs 1.1 vs 1.0 vs 0.9
Since 100% of the plugins are now useless, can some kind of header be put on the plugin section to warn people not to try to install any of them?
August 12, 2010 at 12:04 pm #76416In reply to: bbPress plugin September 15?
mr_pelle
ParticipantMaybe when you make posts about bbPress on other websites, you could do us a favour and make a little 2 line forum post on this website too
I agree: after all, isn’t this supposed to be the main bbPress website?
August 12, 2010 at 11:58 am #76415In reply to: bbPress plugin September 15?
kevinjohngallagher
MemberYo Gatuam,
I’m in a real positive mood mate, it’s a glorious day here in Edinburgh (ha, that don’t happen that often) during the largest Arts festival in the world, at a time when we have 8 festivals overlapping in 6 weeks. I am like a pig in the proverbial

And if they were subscribed to feeds, most of them would also have subscribed to BuddyPress feeds
That’s a massive presumption matey

All i’m saying is, hasn’t 20 years of the internet as we know it shown us not to presume about users?

or they would be using WordPress (so they may get to know about it from the dashboard)
If they happened to log in on the 20-24 hours it was on the dashboard

Which gets harder depending on timezones and y’know life. If it was up there for a week, well yeah, I think you’d be closer to being right

All i’m saying is this JJJ: Maybe when you make posts about bbPress on other websites, you could do us a favour and make a little 2 line forum post on this website too. All that’s needed is “hello folks, FYI, link”.
From my point of view, this covers 100% of bbPress users, where are not doing it covers less than 100%. To me, in a really positive sense, taking 1 minute to post “FYI, link,
” and make sure no-one feels lift out is really positive 
bbPress users have a history of hearing things 3rd/4th/5th hand, and rarely do those things turn out positive. I believe that JJJ’s plug-in will be positive to countless people, and i’m positive he’s the man for the job. Lets communicate about something positive, in a positive way, to all users

As opposed to posting about software X, on software Y’s website, and hoping people use software Z to read the news about it for the 24 hours it showed it. That’s just comical – haha actually I wonder if there’s already a dilbert comic that covers such convoluted messaging…
Have a great day folks, i’m off to see my 3rd favourite comic ever tonight
August 12, 2010 at 11:52 am #76414In reply to: bbPress plugin September 15?
Gautam Gupta
ParticipantKevin, let’s be positive.
Couldn’t you have even posted a blog post here or a forum post here just with a link “hey folks, wanted to make sure you saw this
” ?If bbPress users don’t use WordPress, then 99.999% they would also not be coming to bbPress blog each day to check for updates. And if they were subscribed to feeds, most of them would also have subscribed to BuddyPress feeds or they would be using WordPress (so they may get to know about it from the dashboard). And even if anyone would have missed, he/she would have got to know about it via other blogs like wpmu (I am talking of the people who like to be up to date with bbPress happenings).
August 12, 2010 at 11:44 am #76413In reply to: bbPress plugin September 15?
kevinjohngallagher
MemberBro, there is zero doubt in my mind that you were always thinking of us, and your plug-in will please a great many people.
since both blogs feed into the WP dashboard you’re all going to see it regardless
But is it ok to suggest that not everyone who uses bbPress, also checks a WordPress install’s Dashboard that regularly? Especially as your post was bumped off that list in under 24 hours (it only shows the last 5 posts pulled in from entire 31 feeds it aggregates).
We’re not afflicted matey, thankfully many of us are in good health, but it’s hard sometimes to not find it difficult when we’re treated with presumptions.
Having to log into a WordPress install once every 24 hours ad infinitum just to check if someone’s posting bbPress news on another website, just seems a little daft.
Maybe when you make posts about bbPress on other websites, especially ones that have more info than has been posted here, you could do us a favour and make a little 2 line forum post on this website too. All that’s needed is “hello folks, FYI, link”.
August 12, 2010 at 9:59 am #76412In reply to: bbPress plugin September 15?
John James Jacoby
KeymasterThanks Rich! Me too!
August 12, 2010 at 8:56 am #76411In reply to: bbPress plugin September 15?
Rich Pedley
MemberLooking forward to it JJJ.
August 12, 2010 at 8:51 am #76410In reply to: bbPress plugin September 15?
John James Jacoby
KeymasterAw, you’re all so afflicted.

A few of the more vocal people in the BuddyPress forums raised concerns about me dual wielding projects, so it made more sense to address it there than here. Plus there’s a bigger audience over there, and since both blogs feed into the WP dashboard you’re all going to see it regardless.
It’s easy to assume that no one is thinking of you guys, I am, I was, and I did.
And yes, I’d like to have /something/ usable in a month or so, like I said in that post “give or take a missing feature or two.”
So, buck up.
August 12, 2010 at 7:28 am #76409In reply to: bbPress plugin September 15?
mikkelsen
MemberThanks for the link Gautam. I’m really looking forward to the plugin.
I would however appreciate some more info on THIS site. It feels a bit strange that we don’t hear information like that on bbpress.org.
August 12, 2010 at 6:03 am #92673In reply to: Registration Email
pagal
ParticipantIts not integrated at all…
you’ve just used
<IFRAME SRC="http://tangotool.com/gmodforum/bbpress/" WIDTH=870 HEIGHT=1600></iframe>I’m sorry but we don’t call it seamless or deep integration.
-
AuthorSearch Results