Deprecated: Assigning the return value of new by reference is deprecated in C:wwwtitleforumbb-settings.php on line 186
Deprecated: Assigning the return value of new by reference is deprecated in C:wwwtitleforumbb-includesbackpressfunctions.wp-object-cache.php on line 108
Deprecated: Assigning the return value of new by reference is deprecated in C:wwwtitleforumbb-includesbackpresspomomo.php on line 171
Deprecated: Assigning the return value of new by reference is deprecated in C:wwwtitleforumbb-includesfunctions.bb-l10n.php on line 484
Deprecated: Assigning the return value of new by reference is deprecated in C:wwwtitleforumbb-includesbackpressclass.wp-taxonomy.php on line 581
I can’t seem to get users to login to both at all. I have tried several solutions on here and no matter what users will not login to both wordpress and bbpress.
I set all the cookie fields, and user database fields. Users are getting shared between the both just have to login twice.
I added the following to code to both wp-config and bb-config:
define( ‘COOKIE_DOMAIN’, ‘.domainname.com’ );
define( ‘COOKIEPATH’, ‘/’ );
I am not using wordpress MU, so none of those options are checked. I am running bbpress 1.02 and wordpress 3.0.4
@Mark McWilliams
Just DM me your email id and I’ll mail you your user/pass of my test forums.
@Mark McWilliams
Just DM me your email id and I’ll mail you your user/pass of my test forums.
Gautam: We already have bbpdevel.wordpress.com – though that’s not active.
Which is why I said “[…] but for bbPress on bbPress.org right from the start” which is the route WordPress are going to go down with make.wordpress.org/code as bbPress would probably take that route too, so do it from the off! 
Rich Pedley: 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.
I forgot about your site Rich, signed up, but ideally wanted to take a look at all the stuff you can’t see right now!
All the back-end administration coolness!
Gautam: We already have bbpdevel.wordpress.com – though that’s not active.
Which is why I said “[…] but for bbPress on bbPress.org right from the start” which is the route WordPress are going to go down with make.wordpress.org/code as bbPress would probably take that route too, so do it from the off! 
Rich Pedley: 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.
I forgot about your site Rich, signed up, but ideally wanted to take a look at all the stuff you can’t see right now!
All the back-end administration coolness!
32… 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!
32… 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!
setup the equivalent of WPDEVEL but for bbPress
We already have bbpdevel.wordpress.com – though that’s not active.
setup the equivalent of WPDEVEL but for bbPress
We already have bbpdevel.wordpress.com – though that’s not active.
This is a thing which is there in the bbPress plugin – private forums.
This is a thing which is there in the bbPress plugin – private forums.
You can only have one tag_id arg, 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
You can only have one tag_id arg, 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
John 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!
John 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!
I 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!
I 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!
Does anyone have this? Thanks.
Thanks, 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
Thanks, 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
does this bring over attachments from the old forum ?
Regarding 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.