Search Results for 'code'
-
AuthorSearch Results
-
January 8, 2007 at 9:00 am #53168
In reply to: Request: Ability to Merge 2 bbPress Installs
Null
MemberWould be nicer to have some bbpressMU
Something I really want. Could be done izi I think, just put an id code with each forum and posts and filter on that ID. Only each forum should be able to pick its template and plugins…. well perhaps in the future? wish wish
January 8, 2007 at 8:56 am #52536Null
MemberLike mdawaffe said above: Probably not. There’s a lot of custom code talking to two different servers via http, cron jobs, svn actions and a dozen other things.
/Me guesses there is TOO much stuff going on behind the scenes, to even want to consider making this a “plugin” per se..
I understood that, was aiming to some pluginmaster that want to created something like this
Well it aint that important, it would be just handy. Even more if all the info could be pulled (with some filters) so the plugins would stay at 1 central point (this site) and updated to. So no different plugin versions on every site….
Well just some suggestions…
January 8, 2007 at 5:44 am #50377In reply to: Slashes being added in front of apostrophes
chrishajer
ParticipantI have bbpress and wp on the same database too, and I don’t have a problem with either one. Looking into the gpc_magic_quotes or where addslashes and stripslashes are used.
What type of quotes are added, single or double?
Also, do you have a URL where this can be experienced? Looking through the code, there are a lot of slash-things in there. I would like to narrow the problem down by first seeing it. Thanks.
January 8, 2007 at 4:24 am #53084In reply to: WP+BB integrated, theme integrating login issues..
so1o
Participantspencerp..
good thing – you know how to talk to yourself huh??
January 8, 2007 at 3:59 am #53204In reply to: how many posts can bbpress handle
mozey
Memberwell, its good to know the limits of your software thats all. However, what i was more interested in is, does bbpress somehow purge posts from the database and cache them somehow to lower the load on the DB!!?!?. Thats the only way I can think of how they go over this limit.
I just wanna know how they do it and i’m lazy to look over the code
January 8, 2007 at 1:35 am #52535spencerp
MemberLike mdawaffe said above: Probably not. There’s a lot of custom code talking to two different servers via http, cron jobs, svn actions and a dozen other things.
/Me guesses there is TOO much stuff going on behind the scenes, to even want to consider making this a “plugin” per se..
Or some page we can put on our site, but that pulls al the plugins from this site for display?
There might be a way, I’m just not sure off hand which way would be the “best” though.. Maybe one of the devs, or someone else could help you better.
Either way, good luck with this!
spencerp
January 8, 2007 at 1:26 am #53175In reply to: REQUEST: Enable Guest Posting
bbpressfriend
Memberthe guest posts should be automatically marked as deleted for moderation (if spam = no action, if no spam = undelete) same for new guest topics
January 8, 2007 at 1:10 am #53082In reply to: WP+BB integrated, theme integrating login issues..
spencerp
MemberNevermind, much props goes to boyevul on GoogleTalk!
The login codes were placed in the theme’s header2.php file, directly after an “onclick” action, which was the culprit.
So this:
<div id=”header” onclick=”location.href='<?php bloginfo(‘url’); ?>’;” style=”cursor: pointer;”>
<h1>
<a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a>
</h1><?php login_form(); ?>
<div id=”memlist”>
<a href="<?php bb_memberlist_link(); ?>">Member List</a>
</div></div>
Was changed to this:
<div id=”header”>
<h1>
<a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a>
</h1><?php login_form(); ?>
<div id=”memlist”>
<a href="<?php bb_memberlist_link(); ?>">Member List</a>
</div></div>
And all was peachy! I didn’t however upload the latest files of bbPress to the online copy, and I didn’t upload the new changes I just made here either.. I will then ..
Either way, problem is solved!
spencerp
January 7, 2007 at 11:15 pm #50375In reply to: Slashes being added in front of apostrophes
chrishajer
ParticipantThat’s different from my install, my magic_quotes_gpc are “on” and “on”. Now to find out how to get around that for your server…
What version of PHP are you using? That phpinfo() will tell you, or from the command line, I think
php -v
Also, do you have the ability to use a .htaccess file?
January 7, 2007 at 9:51 pm #52534Null
MemberCan someone make it as a plugin then
Or some page we can put on our site, but that pulls al the plugins from this site for display?
January 7, 2007 at 8:04 pm #50373In reply to: Slashes being added in front of apostrophes
chrishajer
Participantlarmir, do you have an example URL where we can register and test this out? Also, does Dreamhost have a phpinfo() where we could see about magic_quotes_gpc and magic_quotes_runtime? If they do not have that file, can you create a file on your server called info.php or phpinfo.php (name does not matter so long as you know it) and then, in that file, put this:
<?php
phpinfo();
?>
That will give all sorts of useful information, including your magic_quotes settings.
Thanks.
January 7, 2007 at 7:59 pm #53172In reply to: Request: Post Edit Times
chrishajer
ParticipantI also agree that posts should be locked after a while to prevent editing. I hate rereading a post I thought I already read, and finding new information there because they edited it after I read it the first time. Maybe the post_time could be updated when it’s edited? Then it would keep bumping to the top?
I don’t know how to make a plugin yet, but here is what you would change in the core bb-includes/capabilities.php, comment out lines 348 and 349. That seems to do it for me.
if ( $curr_time - $post_time > bb_get_option( 'edit_lock' ) * 60 )
$caps[] = 'ignore_edit_lock';
January 7, 2007 at 7:39 pm #52533Michael Adams (mdawaffe)
MemberProbably not. There’s a lot of custom code talking to two different servers via http, cron jobs, svn actions and a dozen other things.
It’s not terribly well abstracted for use on arbitrary sites. To be honest, it’s a little spaghetti
My plan was for bbpress.org/plugins to be open by this past Friday. It will open tomorrow (Monday Jan 8th).
January 7, 2007 at 7:32 pm #53166In reply to: REQ: Redirect upon logout
Nicki Faulk
Memberso1o, you’re a doll, thank you!
January 7, 2007 at 7:07 pm #53171In reply to: Request: Post Edit Times
Nicki Faulk
MemberI’m not sure, but then again I don’t want my users to go back and keep editing posts. I’m kind of control-freaky like that.
Perhaps there’s something that can be added to the code to allow that, or a plugin to do this?
January 7, 2007 at 7:00 pm #53169In reply to: Request: Post Edit Times
Nicki Faulk
MemberThere is
In your config.php
// A user can edit a post for this many minutes after submitting.
$bb->edit_lock = 60;
Simply change that value.
January 7, 2007 at 6:10 pm #49605In reply to: Emoticons For bbPress?
Nicki Faulk
Membereek, I take that back, it breaks again when editing a post.
I hardcoded my install path because I couldn’t find the function name for the home install.
January 7, 2007 at 6:03 pm #1204Topic: REQ: Redirect upon logout
in forum PluginsNicki Faulk
MemberThis may not need a plugin, but I haven’t seen an easy way to implement via code …
What I’d like is to redirect a user to the forums index page when he/she logs out. Is this possible?
Thanks!
January 7, 2007 at 4:30 pm #53130In reply to: 1st line of the first post in a topic?
so1o
Participantok..
try this plugin
<?php
function your_function_name($where) {
global $topic;
if ($topic)
return $where . ' AND topic_id = ' . $topic->topic_id;
else
return $where;
}
function get_first_post_of_current_topic() {
global $bb_post;
add_filter('get_latest_posts_where','your_function_name');
$bb_post = get_latest_posts(1);
if(count($bb_post) == 1 ) {
$bb_post = $bb_post[0];
post_text();
}
}
?>
where you want call get_first_post_of_current_topic();
January 7, 2007 at 12:37 pm #1203Topic: bb Ratings – Stars vertical instead of horizontal
in forum PluginsGeezerjim
ParticipantI’ve installed the bb Ratings plugin and put the following code on the front page:
<h2><?php _e('Highest Ratings'); ?></h2>
<table id="highest"><col class="wide" />
<tr>
<th>Highest Rating</th>
<th>Rating</th>
</tr>
<?php bb_top_topics();
foreach ($topics as $topic) : ?>
<tr<?php alt_class('forum'); ?>>
<td><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a>
</td>
<td class="num"><div class="rating-holder"><?php bb_rating();?>
<span class="count"><?php bb_rating_count(); ?>
</span>
</div>
</td></tr>
<?php endforeach; ?>
</table>
The stars show up, the counts are correct, but instead of displaying horizontally which would allow the color to display properly the stars are stacked one on top of the other with the count at the very bottom.
I know the display works on the plugin repository page, but I haven’t been able to track down what I’ve been doing wrong.
January 7, 2007 at 12:04 pm #52334In reply to: A phpBB to bbPress database converter
Anonymous User 133554
InactiveI can’t promise anything since I’have never seen IPB database structure nor code, but I can give it a try. Drop me a line at jaime at iteisa dot c0m with the public URI and I’ll have a look at it if you are still interested.
Jaime.
January 7, 2007 at 6:08 am #53039In reply to: Change the default ‘Member’ role title?
potter_system
MemberChanging the ‘name’ value (line 125) from your
bb-includes/capabilities.php
file would be enoughJanuary 7, 2007 at 4:23 am #53104In reply to: Release notes for bbPress 0.74
Nicki Faulk
MemberD’oh! I see the upgrade notes now. I swear, they weren’t there before! (I hope, LOL)
January 7, 2007 at 4:22 am #53103In reply to: Release notes for bbPress 0.74
Nicki Faulk
MemberOk, thought so. Thanks, Trent.
I have one plugin which has init in it (Online List), so I just change that to bb_init, right?
January 7, 2007 at 4:14 am #53102In reply to: Release notes for bbPress 0.74
Trent Adams
MemberJust code changes. Just file overwrites. Obviously, in the download, there is no:
.htaccess
config.php
/my-templates/
/my-plugins/
If you have those files, just keep them and overwrite the rest. I am sure you knew that already, but I thought I would post it in case others come across this thread!
Trent
-
AuthorSearch Results