Hi,
if you have problem with line 1557 Call to undefined function get_currentuserinfo() in Gengo plugin, try this :
remplace :
function locale($locale) {
global $wp_rewrite, $gengo_use_default_language, $userdata;
by this:
function locale($locale) {
global $wp_rewrite, $gengo_use_default_language, $userdata;
// On inclus le fichier où est définie la fonction :
require (ABSPATH . WPINC . '/pluggable.php');
in gengo.php
It works for me in a conflict between Gengo and an other gallery plugin called WP-simpleviewer.
I hope it could help…
Found here :
http://www.soon7.com/developpements/gengo-comment-resoudre-lerreur-call-to-undefined-function-get_currentuserinfo-in-wp-contentpluginsgengogengo-php-on/
Thanks