Search Results for 'test'
-
Search Results
-
Hello,
I encountered major problems after running the “Repair Forums” tools on my site newdirt.org/forums. It seems like all forums, topics and replies have lost their “parent relationship” and my forum looks empty. This is not a new forum installation, I have hundreds of posts. It looks the same from the admin panel, I can see forum names but they have 0 posts in them. I can see topic titles but they look empty. Replies have “No Topic” and “No Forum” assigned to them, but the content is there. The funny thing is that if you go directly to each topic link, you can see each topic with their replies (for example as accessing “Latest Forum Topics” from the sidebar: Topic From Sidebar.
Things that I did previous to this problem: upgraded wordpress to 3.6.1 and then ran Tools -> Forums -> Repair Forums.
PLEASE HELP!
Wordpress Version: 3.6.1
bbPress Version: 2.4Topic: Issue since upgrade to 2.4
Hello,
I tried for several days to import my forum PHPBB 3.0.11 (the latest version) to bbPress, the latest version too, but the problem is that I end up with countless duplicate for each element of the forum.
How to remedy this?
Sincerely,
Hello,
after exactly 10 years and over 500.000 posts with our board deppheads.com running with Woltlab Burning Board (right now version 3.1.8), social networks have sort of won – instead of 150 new posts the day we have now maximum 5 posts. WBB4 will be coming out soon, so this is the right time to sell my WBB license and move it all to my site johnny-depp.org, powered by WordPress. This is where I seek help.
I already deleted inactive members, so that we now have “just” over 300, but I don’t want to delete all the written things like movie reviews and serious discussion, as this is still the home of many. So there are 500.000 posts and nearly 10.000 topics to be imported.
I edited the example.php and so far it worked with importing members and forums (just on a test WordPress installation for now).
However, there are some problems/questions I’ve come up with and I’m almost sure, there will be more following.
1. there is, equally to phpBB, the problem, that there are topics and posts, and the first post of the topic has to become “topic content” of WBB.
Here I used
// Topic content.
// Note: We join the posts table because topics do not have content.
$this->field_map[] = array(
'from_tablename' => 'wbb1_1_post',
'from_fieldname' => 'message',
'join_tablename' => 'topics',
'join_type' => 'INNER',
'join_expression' => 'USING (threadID) WHERE wbb1_1_post.postID = wbb1_1_thread.firstPostID',
'to_type' => 'topic',
'to_fieldname' => 'post_content',
'callback_method' => 'callback_html'
);Unfortunately, I get the error, that wbb1_1_post.message does not exist:
WordPress database error: [Unknown column 'wbb1_1_post.message' in 'field list'] SELECT convert(wbb1_1_thread.threadID USING "utf8") AS threadID,convert(wbb1_1_thread.replies USING "utf8") AS replies,convert(wbb1_1_thread.boardID USING "utf8") AS boardID,convert(wbb1_1_thread.userID USING "utf8") AS userID,convert(wbb1_1_post.message USING "utf8") AS message,convert(wbb1_1_thread.topic USING "utf8") AS topic,convert(wbb1_1_thread.time USING "utf8") AS time,convert(wbb1_1_thread.lastPostTime USING "utf8") AS lastPostTime FROM wbb1_1_thread AS wbb1_1_thread LIMIT 0, 100
But it does!
I attached both, my wbb3.php import script and the database structure of the most important tables, here you go:
http://deppheads.com/uploads/wbb.txt
http://deppheads.com/uploads/database_structure.txt2. I hope/guess, this is also the reason that all topics (once I remove that passage that produces an error) are started either by Anonymous or by ME (although I haven’t done it)?
3. some users are twice now (like myself..who have been admins of wordpress and users of the forum). Can I simply merge them with
UPDATE wp_posts SET post_author = ‘1’ WHERE post_author = ‘2’; and it will count for the forum, too?4. the passwords – in WBB they are hashed by this:
$passwort = sha1($row->salt.sha1($row->salt.sha1($_POST[‘passwort’])));
so what do I write at the end of wbb3.php
public function authenticate_pass( $password, $serialized_pass ) {
$pass_array = unserialize( $serialized_pass );
return ( $pass_array[‘hash’] == md5( md5( $password ). $pass_array[‘salt’] ) );
}
or is this impossible and the users have to get the new password by mail?5. the imported users have no “Forum Role”. Is is “normal”? Is there any chance to automatically give them the forum role “Participant”?
6. do I have to keep the wbb3.php “forever” because of the passwords or can I delete it one day, even if not all members have com back yet?
7. until now we have everything like private messages, profiles, friends and especially user groups (Moderators, crew members) with hidden forums. Do I see correct, that I can install both, import bbpress and afterwards attach for example our “Mods Only” to the group “Moderators” as group forum?
8. I see that every user gets a new User ID – old IDs are saved in table _bbp_converter_translator – will that table be kept? Maybe by this I have a chance to later import – somehow – private messages for buddy press!?
Alone if my first point is solved, I’d be thankful.
Kind regards, inspirationally.
Hi,
I’m in the process of migrating a phpBB forum to WordPress with bbPress. I don’t know if the bbPress style is better but my users are used to the phpBB style for displaying Forums on the main page. So I tried to reproduce that layout in bbPress using categories. With the default theme, I was not happy with the way it looked. After a quick search in these forums, I saw some interesting topics from @lynq (here and there) but it didn’t work as intended in the last bbpress release and ticket #1958 has been moved to 2.6.
So after a few hours of searching codex, and a lot of tries, I managed to do what I wanted. As there is still some demand in Lynq’s topic, I thought I should share my little work.
I’m not a developper, so my code may be a little messy, but it works as intended. I’ve tried using the bbpress functions, and commented my code. If any PHP expert would like to review it and make it better, any feedback is welcome.
The only file to change is loop-forums.php with this code.
You just need to create it and paste the code. Then upload it to /wp-content/your-theme/bbpress/. Use a child-theme if you don’t want to loose it on next theme update.The forums are not yet online, so here are some screenshots with descriptions. (In French, because, as you may have noticed, English is not my native language 🙂 )
I’ve tested many situations (even a category inside a forum, which bbpress doesn’t consider anymore as a category, probably normal behavior) and I think everything works as intended. Feel free to report any bug.
Hi
I have faced an issue that maybe some people have encountered and for which I did not find much info on the net.Basically the problem was that the bbpress default template that I embedded in my WP template was rendered with supplementary line breaks (<br> and <p> tags). Just as if the wpautop function was reapplied on the forum content included in the template.
I noticed that the problem was existing on Linux if the template files had an Unix EOL : LF
And also existing on Windows (using WAMP) if those same files had a Windows EOL : CR+LF
I found a workaround by making the template files have a Mac End Of Line with : CRBut I am not sure this is a clean solution
Maybe there is something far more simple that I do not knowThanks
I am using the latest 2.4 bbpress version
I ran a search and didn’t find an answer to this. If there is one please point me to the right post.
Behavior problem with Title Tags
Site is multi-site 3.6, buddy press 1.81, bbpress 2.4. All other themes and plugis current. Problem on the main site only. Sub-domains not effected.
I found the title tags aren’t showing up correctly. On all pages other then BP pages and home page only the site name shows up as title in the browser. I can see that the page name/site Page | site name is trying to show but loops back to just the site name without the page or pipe.
I change the theme to 2012 and I still had the same problem.
I’ve tested in Chrome, Firefox and IE all behave the same.
I cleared, cache, temp internet history and file throughout the process of finding what’s wrong.
I deactivated all plugins and Title tags returned to normal tag behavior. I activated the plugins 1 by one and discovered that BBPress is causing the problem with the title tags. I deactivate all plugins again and activated only bbpress and sure enough it’s the problem. Right now I have BBPress deactivated.
Please help me through this issue.
Hi all,
here is a problem that one of my members ran into whilst testing out the different tags available in the text editor. As he was unfamiliar with html tags he didn’t realise that a list tag would need to be nested within a ul/ol. Anyway, the problem occurs whenever someone posts a reply which contains an unnested list item (
<li>list item</li>). Once the post is published the list tag is rendered underneath the unordered list class=”forums bbp-replies”. This causes styling issues for anything being displayed underneath the post.I thought this may of just been my forum, but i briefly tested it on this forum and it also causes styling issues.
You can find a screenshot comparison of how my forum looks normally and how it looks with the tag breaking the style.
The image doesn’t show the severity of the issue, but you can see how a simple tag that any user can post can effect styles which are outside of the text editor.
I tried searching but couldn’t find anyone else reporting a similar issue. Has anyone else run into this before? are the bbpress developers aware?
Topic: I find a problem for search
i have updated to 2.4,I find a problem for search.
when the wordpress Permalink Settings use Numeric like(http://localhost/test/archives/123),
use the bbPress forum search form, It will not result always.Topic: Delete Sidebar
