i've found the solution of my problem....
The plugin looks for a "quote.ajax.php" in a "my-plugins" folder... I don't know why it is so.
The "fix" is to change all inclusions of word "my-plugins" in bb-settings.php to "bb-plugins"
Version: 1.2
Last Updated: 2009-7-23
Requires bbPress Version: 1.0 or higher
Compatible up to: 1.0.1





i've found the solution of my problem....
The plugin looks for a "quote.ajax.php" in a "my-plugins" folder... I don't know why it is so.
The "fix" is to change all inclusions of word "my-plugins" in bb-settings.php to "bb-plugins"
That's because you should install the plugin in the my-plugins folder. bb-plugins is for core plugins only. The "fix" is to move the plugin to my-plugins instead of replacing text inside the plugin ;)
Got it to work, works perfect, thx!
Just got this to work in my 1.0.2 installation, using the iNove theme. All I had to do was go into post.php and edit this line (~line 11):
<div class="poststuff"><?php printf( __('Posted %s ago'), bb_get_post_time() ); ?> <a href="<?php post_anchor_link(); ?>">#</a> <?php post_ip_link(); ?> <?php post_edit_link(); ?> <?php post_delete_link(); ?></div>
To this:
<div class="poststuff"><?php printf( __('Posted %s ago'), bb_get_post_time() ); ?> <a href="<?php post_anchor_link(); ?>">#</a> <?php bb_post_admin(); ?></div>
That is, I had to add <?php bb_post_admin(); ?> to that line. I cut out the other junk because it was redundant (try adding just the bb_post_admin call to the end and see).
Thanks, works great
how can I edit this so that nested blockquote ARE NOT removed?
seems to work if I change in quote.php :
$text = preg_replace( '/<blockquote>((.|[\n\r])*?)<\/blockquote>/', '',$post->post_text );
to
$text = ($post->post_text);
this plugin also seems to create a clash with adding tags in topics. Automatic feedback for adding a tag via ajax no longer works in some topics... anyone have any ideas?
re: my previous comment, the clash with adding tags was caused by an extra space after the final ?> in the quote.php file, just something to be careful of!
I have a little problem, in local is all OK if I put thw plugin online i get this error
http://www.endurodoc.net/forum/my-plugins/ajaxed-quote/quote.ajax.php?_wpnonce=d9d809dffb"ed=1 404 Not Found 1.18s
with firebug.
You must log in to post.