Forum Replies Created
-
In reply to: Sitemap generator
Nice to see you around
In reply to: Phantom posts showing in the post countI think you could probably do a recount in the admin panel as well:
http://www.example.com/bbpress/bb-admin/site.php
There’s a “Recount” tab there that might help.
Can you post a screenshot showing the functionality that is missing, or what the plugin is doing wrong?
In reply to: Edit posts: show other posts of the topicI am always hesitant to ask software features than easily can be duplicated using browser functionality. However, maybe someone will see this thread and help with your request.
In reply to: Edit posts: show other posts of the topicYou could do it with two browser tabs or windows. Why are you looking to see other posts while editing another (just curious)?
In reply to: admin re-directs to index and unable to post.Also, be sure to clear all the cookies and try logging in again.
In reply to: admin re-directs to index and unable to post.You may be logged in as admin, but whichever user you are logged in as does not have the authority to administer the forum. I think think that’s why you get redirected.
Does this help?
https://bbpress.org/forums/topic/keymaster-lost-after-integration
Do other links work and just the admin link redirects you to the home page? If other links do not work, you might have issues with permalinks and the mod_rewrite rules.
In reply to: what powers this forum and wordpress?How about at wordpress.org/support/ ?
In reply to: what powers this forum and wordpress?Does anyone have a guess at the version of bbPress that’s running bbpress.org/forums/ or wordpress.org/support/ ?
Is there anything that would give it away in the source if you looked? Like a specific class or id that came about in a specific version?
In reply to: hack helpThere is no author rank in the default installation. Are you talking about their title (like Member or Administrator)?
If so, you would need to modify the template file for each place where the title appears (maybe it’s only on the topic pages, for each post?) If so, just remove it from the post.php file in your template directory:
Remove this line:
<small><?php post_author_title(); ?></small>
That removes the author title from under the author’s name. If that’s not what you mean, then you have something installed that I do not. I think there is a post rating plugin and an author reputation (karma) plugin: maybe one of those is showing the rank you’re talking about.
In reply to: Accents in usernameThis is the latest discussion I heard about the issue:
https://bbpress.org/forums/topic/diacritic-letters-i-username-like-goran
What is the primary language of your forum?
In reply to: what powers this forum and wordpress?bbPress is beta software right now. The latest beta release is 0.9.0.2. That release is not compatible with WordPress 2.6. The decisions are up to you.
The compatibility is only an issue if you want integration. If you don’t need integrated users between bbPress and WordPress, then install bbPress 0.9.0.2.
In reply to: latest topics?There is a discussion of changing the number of front page topics here:
https://bbpress.org/forums/topic/how-to-restrict-number-of-latest-discussions-on-front-page
To put the categories first and the latest topics after, you just need to move those things around in your front page template (front-page.php in your template directory).
In reply to: TagsOh wait – I did try it out 3 weeks ago. Take a look here and see what I missed:
In reply to: TagsPlease let us know how you resolve it.
In reply to: Google sitemap for bbPress?> Do we really need the plugin for making sitemaps
> for search engines?
No
> Does it make bbPress forum more SEO friendly?
No
All the sitemap does is submit a list of URLs to a search engine. It doesn’t do anything else.
In reply to: bbPress.org home page css missing?It was happening earlier, but they fixed it.
In reply to: Administrator RecountAdd extra capabilities?
In reply to: PHPBB3 ConverstionIn reply to: Upgrade Path SuggestionsOption 1 is valid. When bbPress comes out later though, WordPress might be higher than 2.6. There might always be a little bit of lag between versions for compatibility, but the idea is sane: upgrade now, then wait for a new version and upgrade again later.
Option 2 is also valid.
Question 1: yes, you can grab any old release from WordPress.org:
https://wordpress.org/download/release-archive/
Also, you need only worry about compatibility if you are looking for integration. Other than that, the versions don’t need to be sync’d up.
And finally, you need to be careful running old versions to be certain there were no security fixes. The move from 2.6 to 2.6.1 had nothing to do with security, but the move from 2.5 to 2.6 did. So I guess 2.5 had some security issues. [citation needed]
In reply to: Auto insert image (inline images)I don’t believe that exists yet. The attachment plugin was modified to allow you to insert the image after uploading it, but it’s a two step process and clunky (IMO.)
I think the easiest thing is to just have the users use something like ImageShack or PhotoBucket and then use the allow images plugin. They upload the image to hosting, then insert the image. Problem solved.
The images are not stored on your server, but my users had no trouble with that process (find hosting, then upload the image.) They can also hot link to other images on the net without having to upload it anywhere.
In reply to: Problem with BBPress:Live CommentPlease don’t bump topics. If someone can offer help, they will.
I don’t think that plugin author has been around for a while. Maybe try contacting them through their website. http://klr20mg.com/
In reply to: I fail to write the login form CSSDid you know that Brian Gardner released a Revolution theme for bbPress?
http://www.revolutiontheme.com/magazine/bbpress/
http://www.briangardner.com/blog/revolution-finally-meets-bbpress.htm
In reply to: WordPress + bbPress Integration 101The wp-config-sample.php for WordPress 2.5.1 most DEFINITELY has that constant (line 13). Maybe you upgraded and used an old wp-config.php. You would never see the new constants unless you updated a wp-config-sample.php with your old database details.
// Change SECRET_KEY to a unique phrase. You won't have to remember it later,
// so make it long and complicated. You can visit https://api.wordpress.org/secret-key/1.0/
// to get a secret key generated for you, or just make something up.
define('SECRET_KEY', 'put your unique phrase here'); // Change this to a unique phrase.In reply to: All setting use cacheLooks like they have already fixed that ticket in Changeset 1644.
I already had the “$bb->load_options = true;” part, but I am setting up a forum with 17 forums as categories and 176 forums total. There are currently no topics, but here are the page load stats from the front page:
0.391 – 405 queries
For a single forum page:
0.148 – 359 queries
After patching bb-includes/functions.php I get this for the front page:
0.294 – 55 queries
And for a single forum page:
0.095 – 9 queries
Thanks a million _ck_.