Search Results for 'code'
-
AuthorSearch Results
-
January 12, 2007 at 4:58 am #53303
In reply to: bbpress user profile link on WP?
Ahni
Memberah! 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
January 12, 2007 at 4:26 am #53310In reply to: Using plugin tags on wordpress
ardentfrost
MemberHmm, 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.
January 12, 2007 at 3:50 am #53308In reply to: Using plugin tags on wordpress
ardentfrost
MemberI didn’t know jack about much of this stuff 2 months ago. I had programmed before, but nothing super special (I did an RSS parser for me and my friends’ main webpage, rayd.org). I just kinda got ambitious with this stuff.
Everything you need to know to do this stuff is in the core code (I’ve pulled so many stylistic and methodological things from preexisting code) and php.net. The only thing you need beyond that is ambition. Mine pretty much peeked when I did Private Messages. I can’t think of another project that will require that much work (though I’m sure there are, I just can’t think of any for now).
January 12, 2007 at 3:20 am #53306In reply to: Using plugin tags on wordpress
ardentfrost
MemberI never get annoyed

I’ve been so busy at work I haven’t had a chance to update my PM plugin yet. It’s still next on my docket. I’ll add your request to my list of things to do.
Last time I sat down to work on it, I was having trouble adding a user search feature… so there’s still that
January 12, 2007 at 3:10 am #53305In reply to: Using plugin tags on wordpress
vaelrith
MemberWill do, I check artentfrost’s forums about every day for a new plugin
I think he might get annoyed with my constant requesting and never posting anything else…BTW, good work on those plugins artentfrost
January 12, 2007 at 1:58 am #53304In reply to: Using plugin tags on wordpress
Trent Adams
MemberSince 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
January 11, 2007 at 3:38 pm #53136In reply to: 1st line of the first post in a topic?
ardentfrost
Member$first_post = $bbdb->get_results("SELECT * FROM $bbdb->posts WHERE topic_id = $topic->topic_id AND post_position = 1");That will give you the post OBJECT… from there you can pull out the text like this:
echo $first_post->post_text;Or since it seems you want to pull out just the first little bit, just use a php string function to make it look and act like you want it to.
It’s not the most eloquent method, but it’s certainly simple.
January 11, 2007 at 10:34 am #1221Topic: Registration spam & Akismet
in forum Requests & Feedbackear1grey
MemberMy bbpress forum is now averaging one registration spam per day – where a user registers, adds their pills or porn site details to the
websitefield, 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.
January 11, 2007 at 8:56 am #53266In reply to: POT file for bbPress 0.74
Stefano Aglietti
MemberThis means that we translators will soon have a branch for our locale also as in wp ?
January 11, 2007 at 3:54 am #52422In reply to: Plugin Request: Forum Categories..
spencerp
MemberThanks pontus.
I might try this then. However, I’m not one for core edits really, but I might give it a go, unless of course Josh comes up with something soon!? 
*cough* I really would like to see this, maybe, implemented in the .80 version.. *cough* lol..
spencerp
January 10, 2007 at 4:54 pm #53215In reply to: Disallowing Registration
thomasklaiber
MemberMaybe add
<php header("Location: path/to/your/page"); ?>to the top of your bbpress registration template?
Just a thought.
January 10, 2007 at 2:38 pm #1216Topic: bbPress integration
in forum Themessilkjaer
MemberI 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
Null
MemberMajor changes like….. ?????? PLZZZ tell
January 9, 2007 at 7:16 pm #53229In reply to: tag.php access issue
chrishajer
ParticipantIs it possibly related to cookies and the domains they come from?
This problem can sometimes be caused bydisabling or refusing to accept cookies
My error was with Firefox 1.5.0.7 on Linux. Maybe it’s just coincidental it went away when the scripts were parsed by PHP5.
January 9, 2007 at 3:49 pm #53226In reply to: tag.php access issue
chrishajer
ParticipantThey will not offer to support .htaccess, but that’s OK as long as they let you use it.
Put that .htaccess (make sure it starts with a period) in your forum root, with the line:
AddType x-mapp-php5 .phpin it.
Then, make sure it’s working. Create a file called phpinfo.php in your forum root. Put this into it:
<?phpphpinfo();
?>
Then, access that URL
http://www.yoursite.com/forum/phpinfo.php. The resultant page will have the PHP version at the top. You want to see PHP5.x.x there, not PHP4.x.x. Try it both with and without the .htaccess to see if it changes. If it’s already parsing php files as PHP5, then we have to dig into what’s not working. If php files are still being parsed as PHP4, the we need to figure out if the htaccess is working or not, or in the wrong location or something.January 9, 2007 at 2:19 pm #50148In reply to: Adjust Size of Hot Tags
A1ex
MemberThere is an error in
/bb-includes/template-functions.phpfile .In that file find
($smallest + ($count/$fontstep)."$unit;'>$tag n";and replace it with:
($smallest + (($count-min($counts))/$fontstep))."$unit;'>$tag n";January 9, 2007 at 12:45 pm #53134In reply to: 1st line of the first post in a topic?
phollo
Memberguys, any other suggestion?
January 9, 2007 at 11:58 am #1214Topic: Problems with tranlation
in forum TroubleshootingGorka Urrutia
MemberI’m working on the spanish translation and I’m having a problem.
syntax error, unexpected $end in /…/bb-includes/gettext.php(307) : eval()’d code on line 1
The error really comes from this line of code:
$posts = sprintf('%1$s %2$s', $post_num, __ngettext( 'post', 'posts', $post_num ));And I guess it has something to do with the plurals (post and posts). I’ve generated the po file using poEdit.
Does anyone have an idea of how to solve this?
January 9, 2007 at 1:43 am #53224In reply to: tag.php access issue
chrishajer
ParticipantAdding this to the .htaccess in the forum root did it for me:
AddType x-mapp-php5 .phpBasically, you need PHP5 to prevent that redirect error. If your server has PHP5, then this will resolve the issue for you.
This problem was mentioned and resolved here before:
January 9, 2007 at 1:05 am #53223In reply to: tag.php access issue
Michael Adams (mdawaffe)
MemberWhat version of bbPress are you using?
Do you have a
.htaccessfile in bbPress’bb-templates/directory?January 8, 2007 at 10:29 pm #53213In reply to: Looking for help with bb-ratings
Michael Adams (mdawaffe)
MemberGlad it works
January 8, 2007 at 10:04 pm #52999In reply to: Request: Posts since last visit
ostlund
MemberIn bb_press 0.74 you need to change “init” to “bb_init” on line 48. Like this:
add_action(‘bb_init’, ‘online_update’);
And then it works again.
January 8, 2007 at 9:36 pm #53208In reply to: how many posts can bbpress handle
ardentfrost
MemberMan, looks like I’ll have to move to some better forum software in the year 6354 then
January 8, 2007 at 9:34 pm #53212In reply to: Looking for help with bb-ratings
ardentfrost
MemberSame thing happened to me in one of mine. I was using get_header instead of bb_get_header. Silly mistakes are the worst when you need help finding them
January 8, 2007 at 5:52 pm #53210In reply to: Looking for help with bb-ratings
Michael Adams (mdawaffe)
MemberTry
$topics = bb_top_topics();as your first line.
-
AuthorSearch Results