Search Results for 'bbpress'
-
AuthorSearch Results
-
January 9, 2007 at 5:11 am #52336
In reply to: A phpBB to bbPress database converter
gewatkins
MemberI’ve gone through the import process successfully except that the text of the posts don’t show up. The text is in the database, it just doesn’t show up where it should. The titles are there, the forums are there, the topics are there but no post text.
Ideas?
January 9, 2007 at 1:51 am #53198In reply to: Request: “Thank You button”
chrishajer
Participantbb-ratings is not the same thing, but maybe useful?
https://bbpress.org/plugins/topic/6?replies=4
Required 0.74 (according to the plugin page.)
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 .php
Basically, 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
.htaccess
file in bbPress’bb-templates/
directory?January 8, 2007 at 10:27 pm #1213Topic: tag.php access issue
in forum Installationstartribe
MemberHey Community,
I am having trouble accessing the tag.php page through clicking on the “tag” link. I am able to view tags in single view but no the tags page, i.e., if on tag single view I click on the “tags” link in:
My Forum » Tags » bbPress
Below is the error page I recieve.
“”
The page isn’t redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to accept cookies.
“”
Any ideas or suggestions would be greatly appreciated. Thanks,
Orion
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 7:19 pm #53207In reply to: how many posts can bbpress handle
mozey
MemberGot it, the explination is here.
http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html
SO yeahh, BIGINT is 2**63. Unsigned bigint is 2**64 which is ALOT. The 20 only refferse to the digit accuracy.
January 8, 2007 at 7:12 pm #53206In reply to: how many posts can bbpress handle
mozey
Memberchrishajer,
whats with the 20 then? i believe you, i’m just wondering what does the 20 do!?!
January 8, 2007 at 5:34 pm #52537Michael Adams (mdawaffe)
Memberbbpress.org/plugins has RSS feeds.
January 8, 2007 at 11:48 am #1211Topic: Looking for help with bb-ratings
in forum PluginsGeezerjim
ParticipantI am looking for some help with the plugin bb-ratings. Specifically the functions bb_top_topics. From what I gather it returns an array of topics in descending order of the votes the topics have received. I took that information and put the following in my front page template:
<?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(); ?>
The problem is that it does not display the topics in descending order, it just displays all of the most recent in the order they were entered.
I know the plugin page (bbpress.org/plugins/) has this function working as it should be.
Thanks in advance for any help.
January 8, 2007 at 9:00 am #53168In 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 5:28 am #53205In reply to: how many posts can bbpress handle
chrishajer
Participantpost_id on my install (.073) is defined as a BIGINT(20). BIGINT can take values up to 2**63 which is 9223372036854775807 assuming all positive integers, which the post_ids are.
January 8, 2007 at 4:49 am #53085In reply to: WP+BB integrated, theme integrating login issues..
spencerp
MemberHahaha.. I’m used to it… Usually I talk to the wall, but he’s on vacation, so..
Dang! I just upgraded the “live” version of the bbPress (localhost copy) to .74, and that crappy IE6 display is still there!?!!?!?!? The forums are pushed all the way to the bottom.. Any thoughts people!?
http://localhost.spencerp.net/forum/
I could have sworn, I also applied the “fixes” in the blog’s theme CSS file too.. what the heck!?
*EDITED- Must have something to do with the blog theme’s H2’s, #Main, and stuff.. I’ll keep tinkering with her on the normal localhost copy.. But, if someone has an idea in the meantime, please share them!
spencerp
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 2:28 am #50376In reply to: Slashes being added in front of apostrophes
larmir
MemberPHP Version 5.1.2
Yes, I have the ability to use .htaccess. Though I don’t no much about its parameters. I’ve used it for 301 redirects and that’s about it. Help with writing anything for the .htaccess would be greatly appreciated.
One bit, I have WordPress on the same server using the same database (bbPress is integrated) and this is NOT an issue in WP – only in bbPress.
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:22 am #53174In reply to: REQUEST: Enable Guest Posting
spencerp
MemberJanuary 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 10:45 pm #53110In reply to: bbPress 0.74 released
Trent Adams
MemberI don’t know if anyone kept a list, but this will be the closest to finding it out.
Trent
January 7, 2007 at 10:36 pm #53203In reply to: how many posts can bbpress handle
Trent Adams
MemberEven if that is a mySQL restriction on the number of entries, I am more than 100% sure there are ways around it. If you need help believing that, just watch what happens when wordpress.org or wordpress.com go over 1,000,000 posts ! ! !
PS Brad, you are still linking your old site in your profile.
Trent
January 7, 2007 at 10:26 pm #53167In reply to: Request: Ability to Merge 2 bbPress Installs
Trent Adams
MemberTRAC ticket submitted as mdawaffe has already mentioned he was working on this.
Trent
January 7, 2007 at 10:14 pm #53124In reply to: Request: Delete Bozo Users
Trent Adams
MemberI am not sure if this is better as core function, so I placed up a TRAC ticket.
Trent
January 7, 2007 at 9:56 pm #53202In reply to: how many posts can bbpress handle
bbolman
ParticipantDo you really need to worry about having that many posts? And no I would assume there isn’t any real limit. But that’s just me.
-
AuthorSearch Results