I really want to know wy this works in PHP5 but not PHP4.
This needs to get fixed at the source.
startribe (or anyone who has seen this problem): Can you de me a favor? Unfix the problem, then add $bb->debug = 1; on the first line of bbPress’ config.php file.
Go to the tags page, and you should see some ugly text at the top of the screen. Can you paste that text here?
Thanks!
That bug and some of these oddities should be fixed in the upcoming bbPress 0.80.
Thanks!
In the upcoming bbPress 0.80, you’ll be able to set $bb->edit_lock = -1 to achieve this.
I’ve been scouring the whole code for bbPress and still couldn’t figure out how to set up the format just how I want it for Date and Time (for the post).
Can anyone tell me where to go for such edits?
Much thanks.
It must be for only WAP phones more than anything. My phone gives me “an error occurred” when I try and view it. I guess this provides us the best of both worlds since mine is good with newer phones and your keeps the rest of us supported!
Trent
Version on your link not support WML, it’s only replace css. My version create page in WML.
ah! I went to trackdown what I added, and realized I was calling the author ID, which is evidently wrong… but this allowed me to get the profile of the logged in user:
<a href="<?php global $userdata;
get_currentuserinfo();
echo('http://intercontinentalcry.mahost.org/discussions/profile.php?id=' . $userdata->ID . '');
?>">Your Profile</a></li>
Thanks trent! You may have only said five words, but they led me to the solution I was looking for – Ahni
Hmm, I don’t think any bbpress functions are loaded when your WP is loaded is it? If not, then you’ll have to build the link from scratch. Link building in bbpress is one of those things you just gotta figure out from doing it a few times (and staring at core code).
Since you’re doing it specifically for your forums, it doesn’t necessarily have to be in plugin form (which is preferable for me since I never made WP plugins). So I would do something like this:
Look at the code used to get the logged in user’s name.
Get the ID of that user anyway you can (you can search the db for the username or use a wp function that I don’t know about).
Start the link formation like $link = “http://zenhelix.us.to/forums/profile/”
Then you can either add the user ID directly to the end using a regular expression ( add a .$userid to the end of the previous line) or just do $link += $userid;
Setup the link with the a href and all that junk.
I wish I could give you more specific code, but like I said, I’ve never done much WP coding.
haha, I’ll probably think of something else I’d like pretty soon. And, by the way, while we’re on this topic of wordpress and bbpress, on my site at the top it says “Hello $user_id”, I’d like for that to link to the forums profile for the user. If you don’t understand, go to my site and look at the top right. You’d have to actually login for it to say your username, otherwise it just says “Hello !”
What exactly did you change?
Trent
Since the paths of where to pull the information for the PM plugin are hardcoded for bbPress installs, I don’t know if it is possible. Maybe drop a line to Ardentfrost at:
http://www.rayd.org/forums/topic/44
Trent
I was wondering how to use bbpress tags on wordress. For example, since my wordpress and bbpress are integrated, i wanted to put a little member section on the wordpress site that would use the pm plugin to show you if you have any pm’s in your inbox. Is this possible?
hey. I’ve integrated the login/registration no problem, but now I’m trying to do something about people having two separate profiles.
IMO the profile in bbpress is alot better than in WP (if only because it’s naturally not in the dashboard) so I’m wondering if just adding the users bbpress profile link in WP would be the way to go?
I was able to get the profile link to show up in WP, though I suspect that because it wasn’t in the loop (whatever the heck that is) it showed the link to admin on my test subscriber account.
Is there a way around this, or perhaps a better way to go?
My bbpress forum is now averaging one registration spam per day – where a user registers, adds their pills or porn site details to the website field, then never visits again.
Check your registrations guys ‘n’ gals, you may find you have a lot of unwanted members (*cough*) linked from your sites.
I’m thinking it’s time registration requests went through Akismet – but for this to happen there would have to be a UI for spotting false positives.
See also: Links to bozos and blocked users.
This means that we translators will soon have a branch for our locale also as in wp ?
Looks very good. Nicely done!
For all the translators, the POT file for bbPress 0.74 is available from a new i18n repository.
You can download the file here: http://svn.automattic.com/bbpress-i18n/pot/tags/0.74/bbpress.pot
If you have any issues with it, please let me know.
Maybe add
<php header("Location: path/to/your/page"); ?>
to the top of your bbpress registration template?
Just a thought.
HParticipant
My bbPress installation works perfect, except for that it generates a weird error message when I log in and log out and when I change my user (admin) profile. When I edit my profile, I end up at this page; bbpress/profile.php?id=1&tab=edit.
This page however gives this message:
Found
The document has moved here.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
I have tried to integrate my bbPress installation with my WordPress installation. Can anybody help me with this?
Sincerely,
Helgetry
I am working on a danish Wii-portal site, and I have chosen to use bbPress/WP to do the job.
The site is not officially launched yet, but is available at wiinyt.dk/secret/. Check out the bbPress at wiinyt.dk/secret/forum/.
Browsing the site on the Wii scales everything up to fit the television perfectly
I wrote some stuff for users who uses cellphones with WAP support. Read here.
I have a site with bbPress and WordPress. They are all integrated to where if you log in to one location, you are logged into the others as well. I also have (well, am working on) a unified registration page where I ask for all needed information and write it to whichever database needs it. Since I have this, I need to have bbPress lose the ability to register. Should I just change register.php to inform the user to register on the main registration page, or is there a better way?