Search Results for 'bbpress'
-
AuthorSearch Results
-
January 11, 2011 at 12:24 pm #103921
In reply to: bbPress Plugin – bbp-twentyten theme
Rich Pedley
Member32… sounds like phpBB
While I don’t has access to a demo, either locally or online that’s fully up-to-date it makes it hard to comment on some of the newer stuff committed, after my PC decided it didn’t want to be a PC anymore!
http://wordpress.elfden.co.uk/forum/ is kept fairly update and when you register you get access to almost everything to show what’s available etc. however, there are a few bugs because it is running 3.0.4, when 3.1 is released I’ll be updating then (I don’t want it on the nightlies).
I’ve mentioned theming to my other ‘alf, but no point in starting until things have settled down. But with all these different files, I think it is even more important that action/filters be included from the off for plugin developers to hook into!
January 11, 2011 at 11:41 am #98820In reply to: bbPress Plugin – bbp-twentyten theme
Gautam Gupta
Participantsetup the equivalent of WPDEVEL but for bbPress
We already have bbpdevel.wordpress.com – though that’s not active.
January 11, 2011 at 11:41 am #103920In reply to: bbPress Plugin – bbp-twentyten theme
Gautam Gupta
Participantsetup the equivalent of WPDEVEL but for bbPress
We already have bbpdevel.wordpress.com – though that’s not active.
January 11, 2011 at 11:26 am #98770In reply to: Restricted section for certain users?
Gautam Gupta
ParticipantThis is a thing which is there in the bbPress plugin – private forums.
January 11, 2011 at 11:26 am #103870In reply to: Restricted section for certain users?
Gautam Gupta
ParticipantThis is a thing which is there in the bbPress plugin – private forums.
January 10, 2011 at 4:57 pm #98789In reply to: bb-query help!
Gautam Gupta
ParticipantYou can only have one
tag_idarg, that too should be an integer ( also=check is made, you can’t have!=check ). Try this:function my_custom_views_init() {
$args = array(
'tag_id' => 35
);
bb_register_view(
'fruits',
'Fruit',
$args,
false
);
}You may try to short-circuit the query though, as shown in this plugin – https://plugins-dev.bbpress.org/browser/my-views/trunk/my-views-statistics.php
January 10, 2011 at 4:57 pm #103889In reply to: bb-query help!
Gautam Gupta
ParticipantYou can only have one
tag_idarg, that too should be an integer ( also=check is made, you can’t have!=check ). Try this:function my_custom_views_init() {
$args = array(
'tag_id' => 35
);
bb_register_view(
'fruits',
'Fruit',
$args,
false
);
}You may try to short-circuit the query though, as shown in this plugin – https://plugins-dev.bbpress.org/browser/my-views/trunk/my-views-statistics.php
January 10, 2011 at 12:17 pm #98733In reply to: Forum Moderation
Mark McWilliams
MemberJohn James Jacoby: It’s active, but it’s a lot harder to calculate spam on a registered and activated user account.
What some people go through just to SPAM a forum!
January 10, 2011 at 12:17 pm #103833In reply to: Forum Moderation
Mark McWilliams
MemberJohn James Jacoby: It’s active, but it’s a lot harder to calculate spam on a registered and activated user account.
What some people go through just to SPAM a forum!
January 10, 2011 at 11:40 am #95788erick_paper
MemberI can do the scraping bit, no problem. But my question is about MySQL data pattern.
Is there any bb press documentation that shows how the mysql structure works? Entering posts is easy, but associating it with user accounts is more of an issue.
Thanks!
January 10, 2011 at 11:40 am #100888erick_paper
MemberI can do the scraping bit, no problem. But my question is about MySQL data pattern.
Is there any bb press documentation that shows how the mysql structure works? Entering posts is easy, but associating it with user accounts is more of an issue.
Thanks!
January 10, 2011 at 11:39 am #64392In reply to: Invision IP.Board to bbPress conversion script
erick_paper
MemberDoes anyone have this? Thanks.
January 10, 2011 at 5:02 am #98813In reply to: pass variable to forum.php when permalinks are used
3sixty
MemberThanks, but Yes, you can do this without changing htaccess. I just finally got this to work.
I think ‘tag’ is somehow a protected GET variable. I changed it to tag2 and the variable passes fine:
URL: http://mysite.com/bbpress/forum-name/?tag2=333
php: echo $_GET
Output: 333
January 10, 2011 at 5:02 am #103913In reply to: pass variable to forum.php when permalinks are used
3sixty
MemberThanks, but Yes, you can do this without changing htaccess. I just finally got this to work.
I think ‘tag’ is somehow a protected GET variable. I changed it to tag2 and the variable passes fine:
URL: http://mysite.com/bbpress/forum-name/?tag2=333
php: echo $_GET
Output: 333
January 10, 2011 at 4:57 am #90303mmoore5553
Memberdoes this bring over attachments from the old forum ?
January 10, 2011 at 3:16 am #94838In reply to: bbPress 2.0 – Updates
John James Jacoby
KeymasterRegarding the migration script, it’s a super high priority item, but the plugin core needs to settle before it makes sense to start building that bridge. By the time the plugin officially launches, there will be a migration script included.
January 10, 2011 at 3:12 am #94837In reply to: bbPress 2.0 – Updates
John James Jacoby
Keymaster@gswaim – I can assure you bbPress as a WordPress plugin is no ground-hog day (although that is one of my favorite Bill Murray movies.) There’s more activity in the bbPress trac over the past 2 months than there has been in the previous 18.
Evidenced by: https://trac.bbpress.org/log/
Matt and I have shared a similar interest in having forum integration inside WordPress since 2008 when I first started using WordPress and bbPress regularly. The bbPress stand-alone can be deeply integrated with great success into WordPress. bbPress.org is a great example of how they can play nice together, as are WordPress.org and WordPress.com. All of the support forums use bbPress with shared user tables and dedicated themes to make them look the part.
But, I’m with you in that it just isn’t as turn-key simple as it could and should be.
Regarding Tadlock’s plugin, he volunteered an early iteration of his code to me which helped confirm I was on the right track and give some ideas on how to do a few things I hadn’t finished yet. So his forums haven’t fizzled, they’ve been merged into bbPress so he doesn’t need to bare the burden of supporting another large library of code, and instead he can contribute back to it when he has time or needs something specific.
Regarding my job with Automattic, progress slowed because every new employee does a 3 week training session with the Happiness Engineer team. It just so happened that my 3 weeks ended as the holiday season began. Not due to lack of importance, just not-so-good timing for writing code.
January 10, 2011 at 2:11 am #94836In reply to: bbPress 2.0 – Updates
Mark McWilliams
Membergswaim: Then Justin Tadlock was going to knock one out and that also fizzled. He had a pretty decent looking forum in a matter of weeks, but it was never finished. Or at least it was never released.
If you want to read a particular thread that talked about it (maybe in a little more detail) but more importantly a reply from Justin Tadlock, then that might give you a little more insight as to why he never released it! Hope that helps a little?
January 10, 2011 at 1:34 am #94835In reply to: bbPress 2.0 – Updates
gswaim
ParticipantAt the Raleigh 2009 WordCamp, when given the chance to present a question to Matt, I asked:
“What is the status of bbPress?”
His response was that bbPress was alive and well and he wanted to develop it as a plug-in so the masses could easily implement it.
I asked this question then because I really needed a forum and I wanted to stick with a WP solution. Two years have passed and adding a forum to my site has become my “Ground Hog Day.” I work hard at it, but somehow every morning when I wake up my site still doesn’t have a forum.
Over the last two years I have installed about every forum solution on the market (I think I installed SimplePress at least 3 times). They all looked like an add-on, so they got pulled.
Then Justin Tadlock was going to knock one out and that also fizzled. He had a pretty decent looking forum in a matter of weeks, but it was never finished. Or at least it was never released.
I have to admit when I saw this reply from JJJ,
With the holidays coming up and starting my new job at Automattic, progress on the plugin is going to slow down for a week or two.”
it seemed like another Ground Hog Day to me. I would have thought that having the lead developer of the bbPress plug-in working for Matt (who adamantly supports the bbPress plug-in),the project would have gone faster, not slower.
I am not trying to be critical. I just wanted to put some historical perspective on this project. In my humble opinion, for WP to be considered a CMS, it needs to have a forum core plug-in. I am sure I am not alone in wanting to see this major missing piece fall into place.
I am not a coder and I can only sit back and keep my fingers crossed that one morning I wake up and my WP-powered site is truly a CMS with a WP supported forum.
Thanks for the hard work. Let’s push on. I can smell the end zone!
January 10, 2011 at 1:25 am #94834In reply to: bbPress 2.0 – Updates
Mark McWilliams
MemberJohn James Jacoby: With WordPress 3.1 almost in its third release candidate, we can expect it to ship really, really soon. That said, it makes sense to drop 3.0 support and focus on 3.1.
I agree, it brings in new features we can take advantage of, which cuts out half the hassle that’d be needed to get them working in the first place! — Why try and rebuild something we can already use?
January 10, 2011 at 1:18 am #37012rxtalk
MemberI’ve uploaded the files onto my server, but I keep getting an error message. I do not have wp loaded. Was told to rename bb-config-sample.php to bb-config.php. I tried this in Firezilla by rightclicking the file (not sure if that was a correct step but the instructions do not provide which tool to use to change the file’s name). Nevertheless, I’m getting an error message. Any advice would be GREATLY appreciated.
January 10, 2011 at 1:12 am #98842In reply to: Is WordPress a requirement for BBPress to work?
rxtalk
MemberSo frustrated!
January 10, 2011 at 1:12 am #103942In reply to: Is WordPress a requirement for BBPress to work?
rxtalk
MemberSo frustrated!
January 10, 2011 at 1:01 am #98841In reply to: Is WordPress a requirement for BBPress to work?
rxtalk
MemberCan that be done in Firezilla?
January 10, 2011 at 1:01 am #103941In reply to: Is WordPress a requirement for BBPress to work?
rxtalk
MemberCan that be done in Firezilla?
-
AuthorSearch Results