Forum Replies Created
-
In reply to: How to fix links after increasing "Items per page"
Hi. Unfortunately the links obtained from the “#” in Kakumei theme (or similar) are just anchor links. This is due to the fact that they are generated with
post_anchor_link()
(file: bb-templates/kakumei/post.php:11).With “just anchor links” I mean that they are anchors (#post-number) of the current page. They aren’t permalinks. All that links became invalid once you change the “items per page” (and/or other values) from the bbPress admin panel.
All you can do with the links that users have posted is to parse them and change them accordingly to the new server settings but this can (and will) be a long, tedious, hard and prone to errors work.
I have written a plugin called “zaerl Post Permalink” that solved this problem. My plugin export a function that generate this link:
1) http://www.domain.com/the_bbpress_path/post/post_number
2) http://www.domain.com/the_bbpress_path/?post=post_number
The (1) is preferred if
mod_rewrite
is used. These links are permanent and do adapt on the fly to the actual settings of the server. I use my function in various places of the template and post.php is one of these.I can share my work with you if you want. Email me za AT zaerl.com.
p.s. keep in mind that the plugin isn’t retroactive.
In reply to: How do I choose the URL name of the bbpress forum?“If I did install it and deleted the final, does that make it a fresh install or not?”
Once you have installed bbPress for the first time it creates several SQL tables.
“And if I unzip the file do I need to zip it again?”
No. A zip file is just a container of files.
“Because when I try to upload the folder it will only let me upload by the file.”
I don’t understand.
“Even if I uploaded and deleted, does bbpress think it’s still on my blog and do I need to use the second install method?”
If you have installed bbPress and you have deleted the folder bbPress is gone. Only the SQL tables remain. If need to erase them with phpmyadmin.
Maybe you should hire someone to do the work for you. bbPress is very simple to install but it requires some basic understanding of file handling and FTP.
In reply to: Site extremely slow when NOT logged inYou have to give us more informations like the bbPress version, loaded plugins and so on.
In reply to: Unload a file from bbpress or wp headerDon’t you use require_once()/include_once() in order to load the library?
In reply to: How do I choose the URL name of the bbpress forum?If it’s a fresh install do this:
1) Unzip the bbPress zip file
2) Change the newly created folder name from “bbpress” to “community”
3) Browse to /community and install bbPress
Keep in mind that if you have already installed bbPress on
/bbpress
you can’t simply rename the folder. If you want to rename it follow these steps:1) Go to
bb-admin/options-general.php
and change the bbPress URL to the new one2) If you have custom permalinks open the .htaccess file (on the forum root folder) and change the RewriteBase directive to
RewriteBase /community/
3) Rename the folder
In 1.0.2 no fix is needed too.
In reply to: Linking to WordPressTry:
RewriteRule ^.*/bb-login.php$ http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php [R=301,L]
or:
Redirect 301 /bb-login.php http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php
In reply to: Download Issues for you to resolveThe version is shown also in the main admin page (the dashboard)
bb-admin/
just below the statistics list.In reply to: Now Can I Use Private Messaging Plugin?I have used bbPM for a lot of time and also I have checked the code. I think that it’s a very good plugin.
In reply to: All RSS Feeds Broken?(In english please). I don’t know. I don’t have problems with feeds.
In reply to: All RSS Feeds Broken?There’s a space character before <?xml
In reply to: Forum permissionNo admin interface, hasn’t been updated for over an year -> old
No > 1.0 compatibility -> broken
My plugin take code from the _ck_ one but it’s at another level of complexity.
In reply to: permalink doesn't workIf bbPress is installed in /forum so bbPress create its .htaccess in that directory. Check the Apache log and report the error.
In reply to: permalink doesn't workI meant the error description from the Apache log.
In reply to: permalink doesn't workPlease report the error’s description.
In reply to: Forum permission“Hidden forums” is old and broken. zaerl-visibility.
In reply to: bbpress login & registration in wpbut while the registration with bbpress the user must insert name, email, site
Only username and email are required.
In reply to: Errors in bbPress – seen on the Official forumsNah. I’m lazy. Ok I’m joking. It’s an hard to reproduce error cause I use ~15 plugins and 8 are written by me and (urgh) 4 are not released to public.
Maybe I am the source of my “problems.” Eh eh eh.
In reply to: move forum to subdomainAlso change RewriteBase in .htacces (if you use mod_rewrite.)
In reply to: languagesPlease notice that if you specify:
define( 'BB_LANG', 'it_IT' );
then the mo/po must be called it_IT.mo/po. Take my italian translation. It is guaranteed.In reply to: Errors in bbPress – seen on the Official forumsReally?
Yes. Really.
Where do you see evidence of this in action?
In one in one of my forums. Wrong number of posts associated with a wrong number of discussions per user. It seems that it happens in a regular basis after a deletion of a long list of users. But I use a cron job each week so not a big deal. I have not investigated about the plugin that cause this mess.
In reply to: Errors in bbPress – seen on the Official forumsJust recount when you delete a lot of topics. Not a big deal. I do this every week (just in case.)
In reply to: How to use bb_send_pass_message filter?bb_send_pass. At least in 1.0.2 which is the official release.
In reply to: Error After InstallingIf you have integrated bbPress with WordPress (same user database) you cannot choose a login name that already exists in WordPress.
In reply to: How to use bb_send_pass_message filter?function bb_custom_pass_message ($message)
{
$message .= 'My message.';
return $message;
}
add_filter( 'bb_send_pass', 'bb_custom_pass_message' );