Search Results for 'phpbb'
-
Search Results
-
Hi,
I just run a small forum and am looking to move it to bbpress. It is currently on PHPbb 3.1.3. I have everything entered in correct I am sure, but all I get when I import is the replies… No users, categories, topics, etc… just replies.
Let me know if you have any suggestions please.
Repair any missing information: Continue
Conversion Complete
No reply_to parents to convert
Converting replies (100 - 199)
Converting replies (0 - 99)
No tags to convert
No super stickies to stick
No stickies to stick
No topics to convert
No forum parents to convert
No forums to convert
No passwords to clear
No users to convert
Starting ConversionIn a WordPress 4.2.2 installation, using bbPress 2.5.7, I am importing data from a PHPBB3 3.1.4 installation. Both PHPBB and WP4.2.2/BBPress 2.5.7 are on the same server.
The import of data (a MySQL database of about 95MB) includes ONLY “replies.” And those imported replies are added to the DB as posts, but those posts are not visible in the WP Admin (they can be seen using a DB tool like PHPMyAdmin). NO forums are imported.
Running Repair Forums tools all work successfully, except the following:
Recalculating reply menu order … No reply positions to recalculate!
Counting the number of topics in each forum… Failed!
Repairing BuddyPress group-forum relationships… Failed!
Counting the number of topics each user has created… Failed!
Counting the number of topics to which each user has replied… Failed!
Counting the number of replies in each forum… Failed!Basically, so far, I cannot import any data from a PHPBB3 installation, except “replies”.
The PHPBB3 installation is fully functional. It works properly.
Based on the information above, who can give me guidance toward a solution?
Many thanks for your time.
BillHello! I’ve been importing forum from phpBB *the v.1, so converters are not working for me and i’m working through the database.
Well, – forums are showing, so do topics, – when i click on “Replies” in admin – i get no response from server. Yep, there’re about 7,5M replies there, but i guess it has to work despite of that fact?
Those replies are shown in frontend and forums seem to work well.Another issue is: as i imported forums and topics to db – i could see them both listed at backend and frontend. But if i tried to come into the forum or topic on frontend i’ve got “not found”.
Open forum in backend, then just “save” helped that.
Bulk select topics, edit, changing nothing, just “save” helped that.What could be the reason? I couldn’t find any changes in _posts table @db. Maybe bbpress uses some other tables for it? Just couldn’t find it out.
Hi guys,
I recently released a plugin for bbPress+WordPress, which adds a brand new shortcode that displays various statistics for your forum, and also includes the bbPress Statistics as an on/off toggle.
For those trying to replicate a similar look and feel to say, phpBB or vBulletin, this will help!
In future versions, I plan on implementing an actual widget – however, due to the way I have written the plugin I get the feeling it would require a full rewrite to achieve that – so it may be a while off yet.
Anyway, if you’re interested, check it out here: https://wordpress.org/plugins/bbpress-improved-statistics-users-online/
Topic: SMF Import Help Needed
I have a SMF 2.0.9 forum that I am trying to import into bbPress. When I run the built in converter it says no forums, no topics, no users and I know they are there because I have looked in the DB’s with phpMyAdmin.
It’s as though it isn’t finding the db that I am telling it to go to. I have looked in the error logs and can’t find any direction.
I want to switch this to bbPress so please advise what i should do next. I even imported it into phpBB 3.x and tried that converter but it does the same thing. When I try to count the topics or do any thing in the list it says failed.
This is what I have WordPress 4.2.1 running eleven40 Pro Theme this is a studio press theme.
Thanks,
Randal
Topic: Main categories option?
Noticed that lots of users are interested about main categories options, like phpbb, vbulletin, and other popular forums are using. And years later there is still nothing???
There is still no options or plugins to make my bbpress look like this one: http://tamrielfoundry.com/forums/ with different main categories like: “General Discussions”, “mechanics discussion”, “player factions”, etc.
When bbpress team will ad that option?
I have this theme from ThemeFuse called GameZone, and every changes i have made since the original i usually have fix by my self somehow, but the other day i was tired of PHPBB and converted and move it over completly to BBPress, and it work as is should i got some of the css fix so its almost as ret of the page, the only problem is i found out even i use the themes own “widget” deattachtment for pages i need to be with out side bars Like Guides etc.
Then the BBPress have put my finish touch on hold for the last 36 hrs and i am really irritated over it , because why should a thing i literally find 100 of topics about this problem. Reeally think it is weird there isnt being any solution implented as part of bbpress.
Anyway my forum here is correct size in the “front-page”
1. Frontpage : http://www.playstationforum.dk/debat-forum/
2. Sub-page : http://www.playstationforum.dk/debat/kategori/playstationforum-dk/As yoy see the sub-page dont have full width even i have remove made a page.php and copy it over to my child theme and rename it to bbpress.php and remmove
<?php get_sidebar();?>
This is mention alot of places and everything there is sidebar related, but i can really not figure out what because no matter what i remove it either remove background completly or remove the sites build up. And i have made a Page for it and use the shortcode. – Still nothing – Hope someone can help. I actually change to bbpress because i though the hardest part would actually import everything from PHPBB
here is my code as it is now
<?php global $is_tf_blog_page,$post; $id_post = $post->ID; if(tfuse_options('blog_page') != 0 && $id_post == tfuse_options('blog_page')) $is_tf_blog_page = true; get_header(); if ($is_tf_blog_page) die(); ?> <?php $sidebar_position = tfuse_sidebar_position(); ?> <?php tfuse_shortcode_content('before');?> <div class="main-row content-row"> <div class="container"> <?php if ($sidebar_position == 'left') : ?> <div class="middle-main sidebar-left"> <?php endif;?> <?php if ($sidebar_position == 'right') : ?> <div class="middle-main content-cols2"> <?php endif;?> <?php if ($sidebar_position == 'full') : ?> <div class="middle-main content-full"> <?php endif; ?> <div id="primary" class="content-area"> <div class="inner"> <article class="post post-details"> <?php if(!tfuse_page_options('hide_title')):?> <header class="entry-header"> <h1 class="entry-title"><?php echo get_the_title();?></h1> </header> <?php endif;?> <div class="entry-content"> <?php while ( have_posts() ) : the_post();?> <?php the_content(); ?> <?php break; endwhile; // end of the loop. ?> </div> </article> <?php if ( comments_open() ) : ?> <?php tfuse_comments(); ?> <?php endif;?> </div> </div> <?php if (($sidebar_position == 'right') || ($sidebar_position == 'left')) : ?> <div id="secondary" class="sidebar widget-area"> <div class="inner"> </div> </div> <?php endif; ?> </div> </div> </div> <?php tfuse_shortcode_content('after'); ?> <?php get_footer();?>
I’m sure I’m missing something obvious but… I imported my phpbb forum and it appeared to work, then went through the ‘repair’ steps. I see no front end forum. Do I have to change something else?
I didn’t import users because I’m really just trying to save the old forum posts for archival and reference purposes – I don’t want all the old users in the new forum.
That possible?
I did an import from phpBB a while back.
Now, I notice the topics marked as sticky do appear at top of topic list view. But I am noticing that some of the stickies also appear several pages into the topic list view (according to the date they were published). So there is one at the top, and one in the location according to it’s date (two of the same topic).
I used the forum tools in an attempt to repair an sync issues, with no luck.
It’s strange, because it only happens with some of the stickies.
Any suggestions on how I can get only the one sticky to appear at top of forum list? Thanks for any help.