I have confirmed this issue with a squeaky clean install of wpmu 1.2.3 + bbPress 0.8.2.1. All attributes are stripped from html elements included in a post. Now installing and testing with plain old WP 2.2.1, will report back shortly.
Sorry fel64. I am not being very articulate and I appreciate your replies. There are two tables on the main page. One with latest discussions and below that it says forums. There are three columns on the forums section: main theme, topics and posts. I want to add another column that tells you who lost posted in that forum and at what time.
Thanks,
Daniel
Hi!
You can use WordPress Pages inside bbPress. I’m testing an integration between bb and wp and it works flawlessly. Look for some posts about including wp-config.php or wp-blog-header.php in your config.php.
The SVN address is https://plugins-svn.bbpress.org/
You can also browse that address with a web browser and find specific plugins.
Latest versions of individual plugins are in:
https://plugins-svn.bbpress.org/<plugin-name>/trunk/
for example:
https://plugins-svn.bbpress.org/support-forum/trunk/
I agree with this. Also, what would I call to display the date/time of the last post in a forum? This would be so I could say: Latest post at TIME by USER
I have created my-templates in the bbpress directory and copied the kukumei directory from bb-templates under a new name so I can tinker with it. However the admin menu/dashboard does not have a presentation menu anywhere in it! What am I missing? Using latest version of bbpress, 0.8.2.1
kwizNET Learning System, LLC (http://www.kwiznet.com) offers online educational programs for elementary, middle, and high school students.
kwizNET Learning System is an exceptionally effective system for parents, teachers, and homeschoolers to help their students learn and excel in mathematics and language arts. Suggested uses are:
* as a primary teaching tool for your homeschooler
* skills assessment to find student’s strengths and learning needs
* for systematic at-home practice when schools do not follow text books
* supplementing any textbook or school/homeschool curriculum
* extra at-home practice of already learned skills
* extra practice for reinforcing concepts that a child is struggling with
* extra practice over holidays to keep skills sharp
* review tests, quizzes, and homework
Phone no : 1-866-860-8686
Hi Trent;
” the TRAC ticket (development and testing site) shows that this issue with translating dates from the .mo file should work now. Test it out would be the only way to find out for sure.”
-> Nop, impossible because after wp integration you get the streams.php error whenever you set a .mo file in the config.
Let me ask just one question; if you manually translate each file, file by file, all translation you need (excluding admin control panel) are located in the template?
I’ve noticed when multiple topics share the same topic name, the slug gets modified a little strangely. For example, if I have four topics named “Test” the slugs would be:
I’d imagine by the 50th topic, the URL would become quite unwieldy. Surely only the last slug number is necessary. Is there any way to fix this? Since these are supposed to be permalinks, it’s somewhat urgent.
MMember
Culprit – Forum Restriction plugin
Ah. I just got an email notice from my private forum. The test forum I created to try and get some heirarchy going on is visible but creating a post did not seem to work and left me with a 0 post count (the posts appeared in one of my private forums instead).
The Forum Restriction plugin doesn’t work with 0.8.2.1 in that the forums are not visible but still exist in the database.
I deactivated the plugin and deleted our sensitive posts. Voila, all the forums appear in the dropdown menus and the forum admin appears heirarchal.
That’s it for me tonight, but at least I’m pretty sure that’s the source of the problem now.
Ganzua, I haven’t tested it, but the TRAC ticket (development and testing site) shows that this issue with translating dates from the .mo file should work now. Test it out would be the only way to find out for sure.
Trent
I cannot test your permalinks because you turned them off. If you get this, maybe turn them back on so we can test it. As well, your blog took more like 8 seconds to load and your forum was really quick for me. Maybe a coincidence….?
Trent
For error: “Cannot redeclare class streamreader …”, read this…
https://wordpress.org/support/topic/111411?replies=9
has anyone got this patch to work on the latest release? when i apply the patch i get a lot of failed chunks and then when i try and view the site i get
Fatal error: Call to undefined function bb_get_categories();
eek!
It’s there! I’m looking at it right now. In the code you copied it is line 10.
The bb_posts table is what we’re looking for, not wp_posts (also a table), and it tells you the databasename.tablename
so it’s actually trying to look for a table called “posts”. I don’t think the wpbb_prefix
option exists in your tables, I suspect that’s a Latest Discussions plugin thing (ah, hindsight). If it did, it would read bb_
. The .
is used to join two strings together, so what it should be doing is joining 'bb_'
and 'posts'
together into the table name 'bb_posts'
, but since that option doesn’t exist in your tables it just join together ''
(a blank) and 'posts'
, leaving us with the incorrect table name of just 'posts'
. I suspect.
“But after what I’ve integrated both of api’s: the wordpress and bbpress; this resulted in the following error:
Fatal error: Cannot redeclare class streamreader in /var/www/pm/forum/bb-includes/streams.php on line 26″
-> same error here
Sorry, forgot about this 😮 Looked at it, can’t figure out where it might go wrong, so here’s some slightly alternative code that will use a different function to do it’s thing and we’ll see if that works. Replace function fel_addlatestlink() with
function fel_addlatestlink($title)
{
global $topic;
//$felgtlpl = get_topic_last_post_link($topic->topic_id);
$felgtlpl = get_post_link( $topic->topic_last_post_id );
$title = $title . ' <a href="' . $felgtlpl . '"> » </a>';
return $title;
}
This seems to happen any time I choose a localization file
I get a series of fatal errors saying ‘Cannot redeclare class CachedFileReader’ in bb/inlcudes/streams.php.
I’ve searched the forums, and it hasn’t yielded any solutions, is anyone experiencing the same issue?
I am running the latest bbPress 0.8.2, with WordPress config included.
First off, I have to say, bbPress rules! loved it right from install.
And because I love it so much, I decided to mod it into a clean gallery, still needs much testing, but I have one problem.
Doing masses of search/replaces on words such as ‘forums’, ‘posts’, etc. is time consuming. I read through some documentation to find out that you can use an .MO dictionary file, to display alternate words that are called with the _() function!
So I want to ask, how do I go about generating an MO file and using it within bbPress!
Any help will be much appreciated.
It is going to be released here……really quickly! Just coming out of some quick testing.
Trent
fel: Disabling the “Do you want me to load bbPress whenever to …” checkbox worked! I’m now getting the replies from the forum topics on indie pages. Just a few quick questions:
How do you keep it from posting the entire original entry in the forums? (I know the “How much of your blog post do you want shown on the forums? Set it to 0 to get the full post.” option is there, but I don’t quite understand how to use it – for example, make it stop at the <!--more-->
tag.)
What are the rest of the tags (other than <?php felbbreplies(); ?>
) that we can use? I can go ahead and test them out, to make sure that the rest of them are working as well.
Sneaky: Don’t worry!
Nop but I think I got it;
global $current_user and then $current_user->ID
let me test with several users…
Sorry – no, not running this on wordpress.com, it is on my own server, however (unless I have not read the headers properly) the e mails don’t appear to originate from my server. I created two test accounts last night – 10 hours later the e mails still haven’t arrived!
Thank you for details of the fix. It worked (after fixing another @ strpos problem in the functions.php script) however I see that setting is bozo to zero in the admin pages removes the table row, rather than restting it to zero (i.e. setting to one creates the table row with the value 1, resetting it to zero deletes the row, rather than just resetting the value!) which seems strange behaviour – but hey – it works! No doubt it will be swept up in future versions!