Search Results for 'phpbb'
-
Search Results
-
I had this functionality in my phpBB installation before I switched to BBpress,. A friend of mine wrote me a piece of code which does essentially the same thing. Don’t ask me to extend it. I’m not a programmer.
What does it do:
It will automatically replace keywords and link them to a page you have specified.
Example use:
Deep linking to affiliate products or articles on your website.
How to install it:
1) Open the file “Text2Aff.php”. Specify the keywords and links.
2) Upload it the folder “text2aff” to “my-plugins” folder.
3) Log in to your admin panel and activate the plugin
Version: This is version 0.1 and has been tested with BBpress 1.02
Planned:
Would be great to have some sort of admin panel to manage the keywords and urls. Moving this into the database. You are welcome to extend it. Any comments appreciated.
Credit: Jason from http://www.sourcegps.com
Download URL:
Topic: made the switch
I just want to say thank you to the following people who contributed plugins and made my life much easier.
Thomas Klaiber
Eduardo Graells
Michael Adams
Nightgunner5
_ck_
Rich Boakes & Frédéric Petit
Rhys Wynne
Francesco Bigiarini
Well, thats out of the way.
I switched from phpBB3 to bbpress 1.0.2 because I couldn’t stand the huge administration section and the constant spam. In addition I had problems integrating phpbb with wordpress (yes, I tried, wp-united and hated it).
It took me roughly 2 days to implement the forum and wordpress the way it is now and I converted the data from phpbb to bbpress. Lost a lot of users because they couldn’t convert for whatever reason but I managed to keep all the data.
Forum Address: http://www.cichlidexplorer.com/forum
It still needs work!!
I want to hire an expert to import my PhpBB forum and other contents from a PHP/MS SQL based website into bbPress and integrate with WordPress.
If you are interested please respond to this thread.
Thanks in advance.
I’ve built a site to collect software benchmarks of various bulletin board software, found at http://bb-bench.com/ . I’m trying to setup boards under the exact same conditions – forums, topics, posts, users, to show how they scale under various forum loads, to provide users fair, quantifiable claims regarding performance. All of the boards are setup with their stock configuration options (with the exception of phpBB with HipHop for PHP, which I’ll admit to having an unfair advantage)
I would love your comments. What other combinations of forums/topics/posts/etc you would be interested in seeing? Any additional pages?
Additionally, since there are obviously optimisations that can be performed on any forum software, perhaps you can suggest some that might improve the results of bbPress.
Topic: Sub Forums
Example:
Let’s say front-page.php lists 3 categories
Fruits
Veggies
Meats
If you were to click on Fruits; I’d like the next page to show the subforums of that parent excluding veggies, & meats forums. Any comments appreciated.
Basically, I want categories with sub-forums but in a format/structure that you would find in phpbb where subforums are cleanly kept on the next page. Why? Because showing everything in one location can get a bit messy. Especially with subforums.
I have searched through the bbpress forum for this and was able to get the following to work related to the front-page.php portion. Now I just need to get the 2nd page to show the children of the category. Currently it isn’t doing that.
*****front-page.php which works in only displaying the categories****************
<?php foreach( $forums as $forum ) : if( !$forum->forum_parent ) { ?>
<tr<?php alt_class(‘forum’); ?>>
<td>“><?php forum_name(); ?> <small><?php forum_description(); ?></small></td>
<td class=”num”><?php forum_topics(); ?></td>
<td class=”num”><?php forum_posts(); ?></td>
</tr>
<?php } endforeach; ?>
Now I would like the child accounts to show up in forum.php
Any suggestions? Or where I could look? Once you click on the parent forum it just takes you to that category forum.php page, with no children. i need the children to show up but only for that parent.
*****forum.php which I need to show the children*********************
<?php bb_get_header(); ?>
<?php if ( is_bb_profile() ) profile_menu(); ?>
<?php login_form(); ?>
<div id=”main”>
<div id=”forums”>
<h3 class=”bbcrumb”>“><?php bb_option(‘name’); ?> » <?php forum_name(); ?></h3>
<?php if ( $topics || $stickies ) : ?>
<table id=”latest”>
<tr>
<th><?php _e(‘Topic’); ?> — <?php new_topic(); ?></th>
<th><?php _e(‘Posts’); ?></th>
<th><?php _e(‘Last Poster’); ?></th>
<th><?php _e(‘Freshness’); ?></th>
</tr>
<?php if ( $stickies ) : foreach ( $stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php _e(‘Sticky:’); ?> <big>“><?php topic_title(); ?></big></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”><small><?php topic_time(); ?></small></td>
</tr>
<?php endforeach; endif; ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td>“><?php topic_title(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”><small><?php topic_time(); ?></small></td>
</tr>
<?php endforeach; endif; ?>
</table>
<p>“><?php _e(‘RSS feed for this forum’); ?></p>
<div class=”nav”>
<?php forum_pages(); ?>
</div>
<?php endif; ?>
<?php post_form(); ?>
</div>
</div>
<?php bb_get_footer(); ?>
</div>
******************************************************************************
Thank You —
Topic: Importing phpBB into bbPress
Hello.
I searched the forum for an answer, but I couldn’t find any up-to-date answer to my question. I’m doing a website for a mate who has a phpBB-forum which I’d like to integrate with a WordPress theme – and my first choice would be to import everything into bbPress. Is this possible without losing any information?
Thanks in advance,
Kralle