Title: edrahil's Replies | WordPress.org

---

# edrahil

  [  ](https://wordpress.org/support/users/edrahil/)

 *   [Profile](https://wordpress.org/support/users/edrahil/)
 *   [Topics Started](https://wordpress.org/support/users/edrahil/topics/)
 *   [Replies Created](https://wordpress.org/support/users/edrahil/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/edrahil/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/edrahil/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/edrahil/engagements/)
 *   [Favorites](https://wordpress.org/support/users/edrahil/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Nextgen gallery and Social privacy both interfere with get_currentuserinfo?](https://wordpress.org/support/topic/nextgen-gallery-and-social-privacy-both-interfere-with-get_currentuserinfo/)
 *  [edrahil](https://wordpress.org/support/users/edrahil/)
 * (@edrahil)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/nextgen-gallery-and-social-privacy-both-interfere-with-get_currentuserinfo/#post-935019)
 * 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/](http://www.soon7.com/developpements/gengo-comment-resoudre-lerreur-call-to-undefined-function-get_currentuserinfo-in-wp-contentpluginsgengogengo-php-on/)
 * Thanks

Viewing 1 replies (of 1 total)