Display posts as threads
bbPress Plugin Browser »
Threaded posts (0.1)
Average Rating





Your Rating
Author: John Ferlito
-
I haven't tried this yet but thank you for doing it as I was dreading writing the functionality someday.
Posted: 3 years ago # -
Warning: include(/var/www/terminalmusik.com/forum/my-plugins//threaded_posts/post-threaded.php) [function.include]: failed to open stream: No such file or directory in /var/www/terminalmusik.com/forum/bb-includes/template-functions.php on line 17
Posted: 3 years ago # -
In the file threaded_posts.php, change all 4 references to the directory
/threaded_posts/tothreaded-posts/No leading slash and a dash instead of an underscore...
Hmmm, line 48 too? Looks odd.
add_action('bb_activate_plugin_user#threaded-posts/threaded_posts.php', 'threaded_posts_activation');Posted: 3 years ago # -
I get a similar message:
Warning: include(/home/thriftyt/public_html/forum/my-plugins/threaded-posts/reply_js.php) [function.include]: failed to open stream: No such file or directory in /home/thriftyt/public_html/forum/bb-plugins/threaded-posts/threaded_posts.php on line 67
Warning: include() [function.include]: Failed opening '/home/thriftyt/public_html/forum/my-plugins/threaded-posts/reply_js.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/thriftyt/public_html/forum/bb-plugins/threaded-posts/threaded_posts.php on line 67
I tried all the hacks you suggested to no avail...Thanks!
Posted: 3 years ago # -
Near as I can tell, the files are all named correctly; the quick fix is to rename the whole plugin directory to threaded_posts (from threaded-posts) and you should be all set. I haven't done *exhaustive* testing but it seems to be working as advertised in 1.0alpha6.
Though John is right in his readme; it *does* need a little CSS love . . . ;-)
Posted: 3 years ago # -
After I installed the plugin, I lost all of my comments. Was anyone able to use this plugin successfully? I am using v. 0904
Posted: 2 years ago # -
Warning: include(/path/to/forum/my-plugins/threaded-posts/reply_js.php) [function.include]: failed to open stream: No such file or directory in /path/to/forum/bb-plugins/threaded-posts/threaded_posts.php on line 67
The answer to the error is a RTFRM. You need to upload to my-plugins (that might mean creating that directory in newer installations), not bb-plugins.
Then, a non-RTFRM, rename the directory to threaded_posts.
Posted: 2 years ago # -
I think I have got it to work.
Do the changes suggested by musnake.
Also do the following:
Change this line (somewhere near line #100):
add_action('bb_post.php', 'threaded_posts_add_post_parent');
to
add_action('bb-post.php', 'threaded_posts_add_post_parent');Posted: 2 years ago # -
I've done musnake's steps + gautam2011 steps. Warnings about not found files are eliminated. But when i press "reply" on the post it redirects me to [mysite]/moo and this page is not found. wtf? Does someone have an idea how to solve this? Also if someone got it works plz post fixed files. If there are some other plugins like this post its links here.
Posted: 2 years ago # -
@vetmax I had the same issue, but only with IE (8). Not chrome, safari, or ff. In the post-threaded file, the Reply was linked to /moo. So, instead I had it link to #postform:
<div class="poststuff">
<?php printf( __('Posted %s ago'), bb_get_post_time() ); ?>
<a href="<?php post_anchor_link(); ?>">#</a>
<a href="#postform" onClick="reply_to('<?php post_id(); ?>'); return false;">Reply</a>Now it does work in IE without getting a 404. However, I can only get it to make one reply. If I try to write a reply to a reply, it just pushes the comment down to the bottom of the page so it's not threaded at all. Again, that is only in IE for me. It threads fine with #postform in chrome, ff, and safari.
Posted: 3 weeks ago #
Add a Comment
You must log in to post.