revver
Forum Replies Created
-
Forum: Plugins
In reply to: Revver Plugin removes posts in WP 2.3.2gestround,
Whoa.. that is one serious, serious list of plugins! I’m actually wiping a bit of sweat from my brow knowing that you’ve isolated the plugin, glad to see you found the culprit.
Let me know if I can help in any other way – either here or via email at asi a revver.com
Forum: Plugins
In reply to: Revver Plugin removes posts in WP 2.3.2gestroud,
I’ve looked into this some more and can’t duplicate the problem. But based on the description, this is likely another plugin overwriting or changing the SQL statement and not returning the join correctly.
Some plugins will overwrite the join for posts or comments and not return the full SQL, overwriting it instead, but the problem is definitely related to the SQL being returned.
Could you list the other plugins you have activated on the blog, you may have plugins modifying the SQL posts join and comments join incorrectly.
Forum: Plugins
In reply to: Revver Plugin removes posts in WP 2.3.2gestroud,
Try renaming the plugin folder to “revver” instead of “revver-wordpress-video-plugin.” WordPress.org’s SVN seems intent on changing the name of that folder, and we’ve hardcoded that folder name in to deal with some hosting situations where relative paths don’t work properly.
Alternatively, you can just download the plugin from http://revver.com/go/wp/
Of course, let me know if you continue to experience any issues and we’ll take a look at it right away.
Forum: Plugins
In reply to: Revver Plugin removes posts in WP 2.3.2gestroud,
Can you provide a little more information? Were you able to enter your revver username and password on the configuration page successfully? We’ve got a few sites up and running with 2.3.2 and the plugin and haven’t experienced anything like this.
Feel free to drop me a line directly at asi a revver.com.
Forum: Developing with WordPress
In reply to: Comments Feed Broken: “posts_join” no longer announcedPing. Any chance of getting this resloved, or will WordPress no longer support post_joins in comment feed announcements? Either way, it’d be nice to let our users know whether it’s something you guys are thinking of fixing.
Forum: Developing with WordPress
In reply to: Comments Feed Broken: “posts_join” no longer announcedHere’s a simple test:
function testPostsJoin($join) {
echo “"; echo $join; echo chr(13); echo "POSTS_JOIN FILTER ANNOUNCED"; echo chr(13); echo "“;
}
add_action(‘posts_join’, ‘testPostsJoin’);Add that to a test plugin, then run the comments feed and you’ll see nothing is announced.