Anonymous
Unregistered
Posted 3 years ago #
So I got tired of Gengo behaving like a queen bitch who doesn't let the cool people join the party and I'm putting this up. I am currently using WordPress 2.6 with Gengo 2.5.3.
Mind you, I am not counting the incompatibilities which have arisen in previous versions of WP and Gengo. On WP2.6 I have seen incompatibilities with:
Simple Tags
Version: 1.5.7
Simptom: Blank pages across the board upon plugin activation.
Solution: Plugin removal from plugins directory on server.
Viper's Video Quicktags
Version: 5.4.4
Simptom: Administrator pages work but site frontend reports the following error immediately after activation:
Fatal error: Call to a member function on a non-object in /home/nllrnd/public_html/wp-includes/classes.php on line 39
Solution: Disable plugin.
I will keep adding to this list. I encourage you do to the same.
MailPress
Version: 1.9.2.
Simptom:
Fatal error: Call to undefined function get_currentuserinfo() in /wp-content/plugins/gengo/gengo.php on line 1557
Fatal error: Call to a member function wp_rewrite_rules() on a non-object in /wp-includes/classes.php on line 39
dragunoff
Member
Posted 3 years ago #
cforms 9.3
The plugin activates and works but gettext is messed up. The problem is common and the fix is easy. The load_plugin_textdomain just has to be wrapped up and called upon the init hook. Like this (line 33 of cforms.php):
load_plugin_textdomain('cforms');
change to:
function cforms_load_textdomain() {
load_plugin_textdomain('cforms');
}
add_action('init', 'cforms_load_textdomain');
Cheers!
Jaguwar
Member
Posted 3 years ago #
Here's another: Advanced Tagline makes Simple Tags throw this error:
Element.addClassName is not a function
[...]/wp-content/plugins/simple-tags/2.7/inc/js/bcomplete.js?ver=1.6.1
Line 40
It's not the first time I've found incompatibilities with Advanced Tagline and other plugins, I'll have to contact them about that. GRRRR...
I'll be using Tagline Rotator instead, I have yet to encounter a problem with that particular plugin.
dragunoff
Member
Posted 3 years ago #
WP-PostViews (latest versoin for WP 2.7)
Makes Gengo behave strange on query_posts filtering.
Well... I guess it's mostly Gengo's fault on this one because it just needs to be updated to work with latest WordPress. Develoveprs? Anyone?
I'm facing this same problem too.
Guess I will have to try another plugin till gengo is fixed.