Search Results for 'bbpress'
-
AuthorSearch Results
-
December 18, 2008 at 1:32 am #34553
In reply to: Group forums not working? On a DV?
Burt Adsit
ParticipantYou only do it if group forums are not working for you and you are running on a dv. I don’t know how hosts other than Media Temple (mine) handle things. I can’t imagine it would be different though. They setup apache and all the operating system standard things for us and walk away. It’s a cookie cutter thing for them. They find what works for most of their customers.
Most of their customers at mt probably aren’t running trunk mu, bbpress and bp. Anyway, you have to edit your /etc/hosts file from root. I don’t know anything about cpanel. I have plesk which is similar. The tech support guy had me playing in plesk and all I accomplished thru there was turning off my subdomains.
I played in root with vi. If you can find a way to do this thru the dv backend, I’m sure loads of people would appreciate knowing about it.
Perhaps one of the people who freelance and visit here frequently could enlighten us?
(hint)
December 17, 2008 at 11:22 pm #34548In reply to: Group forums working yet not working
Burt Adsit
ParticipantHowdy people. I solved *my* group forums problem. I’m running on a dedicated virtual server account for mu/bp/bbpress. I found the solution to my problem with group forums. It might have something to do with yours.
See:
December 17, 2008 at 5:11 pm #34533In reply to: php warning causing error in bbpress profile.php
Burt Adsit
ParticipantYou haven’t given us much to go on. You have mu trunk, bp trunk and what version of bbpress? Gotta run 1 alpha 4.
When you try to edit a user profile from bbpress dashboard > users you get the above error? I had problems with bbpress throwing 404s because I hadn’t seen the little link to the needed .htaccess file for bbpress. In case you missed that one its in settings > general > permalinks.
This doesn’t sound like that problem though.
Looks like bbpress is not happy with the info it’s getting about your users. Does mu and bbpress share the same database? If not then you have to point it in the right direction under settings > wordpress integration > show advanced db settings > all that stuff in there.
December 17, 2008 at 4:15 pm #34528In reply to: Can’t edit posts as user
Burt Adsit
ParticipantThe best way to do things is to test mu hard, get bbpress up and running and test it. Then install buddypress. Otherwise you never know who the culprit is in situations like this.
December 17, 2008 at 7:52 am #34511In reply to: Beta problems
Burt Adsit
ParticipantThanks Andy. I’ll look at it when I get done with a smoke break.
I worked up that modification to mu core http.php and installed it on my DV server. Now it returns a valid pingback url.
However, yep there’s a however, group forums is still not working. I’ve even gone so far as to insert a ‘forum_id’ manually into the group meta data table for a specific group. It’s not reading from bbpress. Gonna look at it when I get back.
Progress not perfection ‘eh?
December 17, 2008 at 6:28 am #34507In reply to: Beta problems
Burt Adsit
ParticipantHi Andy, Trent. I just assumed that I’d be able to send a msg to any user in the bp community. Friend or not. I saw the ‘send messge’ button in the user profile area now that you mentioned it. If I assume that, then run of the mill users will assume that too. Then I get to field the ‘why doesn’t it work questions’.
Ya know it’s gonna happen.
The group create not completing only happens on my DV server. Works fine on my windows box.(sigh)
I had group forums up and running on the windows box. Installed latest mu trunk and bp beta and that is not working now. Went thru all the integration and setup instructions as per the readme. No soap.
Hell, my windows mu install *was* talking to the forums on my DV bbpress install and locally. Now nothing, nowhere.
It’s lonely out here in the field.
December 17, 2008 at 3:39 am #34490In reply to: Beta problems
Burt Adsit
ParticipantHey. Well I’m getting closer to finding out a solution for my group forums problem. I know by digging deep into the bowels of the code that group forums is using, that in my case, it is eventually winding up at doing a curl_exec() call looking for the header from the bbpress install. It uses that to figure out the ‘pingback’ url for bbpress. It’s part of the xmlrpc stuff that we have to enable to get it to work.
This curl_exec call is part of a very common php lib that is used to go do http GETs and other nice things. That curl_exec() call always returns 404 on my linux dedicated virtual server box.
I’ve been beating my head against why this is happening for days now and sent off a tech support email to my host. This is the conversation between us.
Howdy,
I’ve got WordPress MU 2.7 trunk installed on my DV and it uses the curl_exec() function to grab some stuff from the returned header info. It’s not working at all on my DV. It always returns 404 even for a valid url.
This works fine on another box I’ve got running. Same code just different environment. It seems like curl isn’t working right here.
I tried a little test script as follows:
<?php
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, “http://ourcommoninterest.org”);
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
?>
Can’t get more basic than that. The url it is trying to get is to a valid domain on my DV. This script returns an ‘apache test page’, not the normal results I’d expect if I visited with a browser. WPMU is up and running at that above url.
Trying a different url such as http://ourcommoninterest.org/bbpress/ gets back 404. This is also a valid working url on my DV. I’ve been trying to figure this one out for days without luck.
Any help would be appreciated muchly!
Burt
My host Media Temple’s response:
You are getting this 404 error when running curl on the server because ourcommoninterest.org is set to the default domain for the ip address. When the server does a curl on this domain it looks in the host file and brings up 127.0.0.1. This localhost address isn’t setup on the (dv) because it is in a virtual environment so it brings up the 404 error.
You can either use the ip address when referencing this domain through curl or create a new domain and set that domain to be the default domain. If you have any further questions regarding your (mt) Media Temple services, please feel free to contact us at any time.
My confused reply:
Sorry Frank. I’m new to this so I’m not getting the explanation or the solution. Let me echo back what I’m not hearing very well.

When curl_exec() is run from the same box the domain is hosted on, it goes out and gets results from 127.0.0.1 (localhost) when querying ‘ourcommoninterest.org’?
When I run the same curl_exec() with the same param ‘ourcommoninterest.org’ on a different server, it goes out, gets dns resolution, finds it on the DV at media temple, doesn’t get 127.0.0.1 but gets the ip address for ‘ourcommoninterest.org’ and is happy to return the results it finds there. (not 404)
I’m actually trying to get a result back from the url ‘http://ourcommoninterest.org/bbpress/’. So to bypass the hosts file problem I can just use ‘http://whatevermyipaddressis/bbpress/’ to get the results I’m looking for?
Ya lost me completely on creating a new domain and setting that to the default domain. This would be a dummy domain that I just create thru plesk and still leave ‘ourcommoninterest.org’ hooked up to it’s current ip address?
(welcome to noob tech support)
This just happened a couple of minutes ago and frankly I’m no closer to understanding a solution. The only thing I can gather from all this tech noise is that it’s a result of being hosted as a dedicated virtual server.
December 16, 2008 at 6:04 pm #34468In reply to: Group forums working yet not working
bebopcool
Participantzenseeker
i also have
wpmu trunk 1574
bdpress combo
bbpress alpha 4
this time just did not take care of the integration pb and finished forum install
December 16, 2008 at 6:02 pm #34467In reply to: Group forums working yet not working
bebopcool
Participanti was focussing on loggin integration between wpmu and bbpress and not on my aim : to post in buddypress forums
cookie integration still do not work but i can post in forums on my test install

i will try on other installation for update
still not understand why it is not working but in fact i do not care ….
December 16, 2008 at 5:18 pm #34466In reply to: Group forums working yet not working
zenseeker
ParticipantYep, I’ve had buddypress working fine until I started trying to integrate bbpress. I followed the instructions at https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt
which were simply great. Everything is fresh. I’m wondering if the combo install is the problem. It does say somewhere to use the trunk of buddypress for bbpress. I got so excited seeing a beta though, just had to try it.
December 16, 2008 at 5:13 pm #34465In reply to: Group forums working yet not working
bebopcool
Participantthose paths sounds good
Here are my paths:
wp-content/member-themes/buddypress-member/
wp-content/themes/buddypress-home/
usually do not put buddypress home in member-themes/
have you tried bbpress and wpmu inegration ?
December 16, 2008 at 3:20 pm #34460In reply to: Group forums working yet not working
bebopcool
Participantwhat have done people to solve their integration pb between wpmu 2.7 and bbpress ?
i feel so stupid with that …
my cookie keys have been checked many times
i added the cookie salt information looking manually to wp-config because a have an issue somewhere :
in bbpress/settings/integration it tells that we have to got to the page :
http://domain/wp-admin/options.php
to get the information about cookie salts
on this page i have those errors (both on new and update install of wpmu 2.7)
Warning: array_search() [function.array-search]: Wrong datatype for second argument in /home/$$$/www/wp-admin/includes/plugin.php on line 1044
Warning: array_search() [function.array-search]: Wrong datatype for second argument in /home/$$$/www/wp-admin/includes/plugin.php on line 1044
Warning: array_search() [function.array-search]: Wrong datatype for second argument in /home/$$$/www/wp-admin/includes/plugin.php on line 1044
Warning: array_search() [function.array-search]: Wrong datatype for second argument in /home/$$$/www/wp-admin/includes/plugin.php on line 1044
December 16, 2008 at 2:34 pm #34457In reply to: Group forums working yet not working
zenseeker
ParticipantBoy, I thought this was going to be a go until I got this: when trying to create a group:
Warning: require_once(/home/ramona/public_html/wp-content/member-themes/buddypress-home/index.php) [function.require-once]: failed to open stream: No such file or directory in /home/ramona/public_html/wp-includes/theme.php on line 822
Fatal error: require_once() [function.require]: Failed opening required ‘/home/ramona/public_html/wp-content/member-themes/buddypress-home/index.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/ramona/public_html/wp-includes/theme.php on line 822
I’m logged into buddypress as the admin
I just installed fresh this morning – buddypress-combo
Fresh install of bbpress-1.0-alpha-4
Fresh install of wpmu trunk r1574
As a side note I also got an error trying to access user account, but I’ve posted that elsewhere here.
It looks like it’s almost pudding, but not quite. What am I missing?
December 16, 2008 at 2:01 pm #34455bebopcool
Participantas tu pu reussir l’intégration de wpmu 2.7 avec bbpress 1.0 ?
moi que ce soit en mise a jour ou sur une install neuve ca ne veut pas et je comprends pas pourquoi …
December 16, 2008 at 2:18 am #34443In reply to: Group forums working yet not working
Mike Pratt
ParticipantAndy et al, I may have found your Groups bug (or one of them) BP doesn’t like when you create or modify (esp modify) a group with the News field empty. I can more easily repro the error if I actually populate the News field 1st, then try and change the group title or something, and delete whatever was in the news feed. Add anything back in and it’s fine. Not sure if this is related to the bbPress probs as I have started from scratch and am proceeding. Let me know if you want me to submit this as a bug. Cheers
December 16, 2008 at 1:15 am #34442In reply to: Group forums working yet not working
Mike Pratt
ParticipantI was, like most with this problem, able to create groups but unable to get a functioning bbPress to play nice with BP. Was hopeful seeing Wardeh figure it out but my install is regressing. I am current on trunks for both WP and BP but am still unable to create groups anymore. SO..Given that I have no data, I wiped the domain clean and started fresh and updated. On a fresh install, I can do everything as before…except create groups, leading me to think it’s not WP or BP, per se, but something I have set incorrectly somewhere. Any advice?
December 15, 2008 at 8:50 pm #34426In reply to: Group forums working yet not working
bebopcool
Participanti have checked something which is not so clear in bbpress (wordpress integration menu)
1 – it ask to fill in information about :
WordPress “auth” cookie salt
WordPress “secure auth” cookie salt
WordPress “logged in” cookie salt
and then to check if those information are similar
WordPress (wp-config.php) bbPress (bb-config.php)
AUTH_KEY BB_AUTH_KEY
SECURE_AUTH_KEY BB_SECURE_AUTH_KEY
LOGGED_IN_KEY BB_LOGGED_IN_KEY
in wp-config we always have
blabla-key and blabla-salt available so what do we have to enter ?
the blabla-salt or the blabla-key.
2 – in the wordpress plugin for bbpress integration :
The complete URL of your plugins directory. Leave blank if it is in the default location “my-plugins” in the bbPress directory.
the default location is “bb-plugins” : so what we shall do ?
i will have a see on bbpress forumsfor this
December 15, 2008 at 6:38 pm #34420In reply to: mu+bbpress on nginx
iprashant
MemberDear Friends,
I have found solution to configure nginx in root with sub domain feature. enjoy.
server {
listen 80;
server_name domain.com;
#error log
access_log /home/public_html/private/log/access.log;
error_log /home/public_html/private/log/error.log;
location ~* ^.+.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$
{
root /home/public_html/folder;
rewrite ^/.*(/wp-.*/.*.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js))$ $1 last;
rewrite ^.*/files/(.*(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js))$ /wp-content/blogs.php?file=$1 last;
expires 30d;
break;
}
location / {
root /home/public_html/folder;
index index.php index.html;
if (!-e $request_filename) {
rewrite ^.+/?(/wp-.*) $1 last;
rewrite ^.+/?(/.*.php)$ $1 last;
rewrite ^(.+)$ /index.php?q=$1 last;
}
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /usr/local/nginx/conf/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /home/public_html/folder/$fastcgi_script_name;
include /usr/local/nginx/conf/fastcgi_params;
}
}
server {
server_name http://www.domain.com;
rewrite ^/(.*) http://domain.com/$1 permanent;
}
December 15, 2008 at 5:51 pm #34417In reply to: Group forums working yet not working
Brent Toderash
MemberI updated to 721 this morning, hoping to get the group forums running. They appear of course, but won’t post a new topic – the generic message “There was an error posting that topic.” appears, which doesn’t help me troubleshoot. Reading through the thread here, I’m not much clearer on the solution.
WPMU, BBPress, and BuddyPress all installed and running, with integrated logins (the whole salt thing).
I’m wondering if I should have something different entered in the “Group Forum Settings.” I started with the ‘admin’ username and password, which is set to “Key Master” rights in bbPress. I then tried it with a different username set to “Administrator” rights in bbPress, but still no forum joy.
Any pointers on this? I need a pinch more black art here…
December 15, 2008 at 2:07 pm #34414In reply to: Group forums working yet not working
Wardee
ParticipantThis is exactly my situation and I still have my cookie integration intact:
“if i create a group in bdpress it appears in bbpress
if i try the same for a topic post it is not (neither in bd nor bb)
but if i create a topic in bbpress, it is shown in bdpress …..” — bebopcool
December 15, 2008 at 9:51 am #34409In reply to: Group forums working yet not working
bebopcool
Participanti had a try without cookie integration just user :
if i create a group in bdpress it appears in bbpress
if i try the same for a topic post it is not (neither in bd nor bb)
but if i create a topic in bbpress, it is shown in bdpress …..
it does interact but not totally from bdpress
December 15, 2008 at 9:31 am #34407In reply to: Group forums working yet not working
Meerblickzimmer
Participant@trent: without cookie-integration it works fine: buddypress + bbpress. great! and thanks to all witch do a great jobb. new trunks come out every hour – the updatespeed is great! thanks for the great work!
m
December 15, 2008 at 4:31 am #34399In reply to: Group forums working yet not working
Trent Adams
Participant@wardeh I avoided entering all the wordpress integration information for nonce, salts, keys, etc right off the bat and just did the “login integration” which really involves just making sure it has the right prefix for your install which usually is “wp_” so bbPress can find the WPMU users.
I see Sambauers put up a new plugin today to help with bbPress and WordPress cookie integration and will give more information after I have a chance to play with it.
Trent
December 15, 2008 at 4:20 am #34398In reply to: Group forums working yet not working
bearuser
MemberIs their a way to make the “administrator” user created in bbpress invisible? I know it will basically disappear after a couple of registrations, but it will still show up on member searches.
December 15, 2008 at 12:55 am #34385In reply to: Group forums working yet not working
Mike Pratt
ParticipantAlmost Victory….but then let down. So, when I decided to go back and do a completely manual key & salt check, I discovered that some of the keys had random stuff in the field. So, I manually entered each one in the bbPress WP integration panel. Now, when I go to my test forum, I don’t get the red error. In fact it looks like it’s working fine but then returns me to the previous state that says I have no topics. Back to the drawing board.
-
AuthorSearch Results