Title: language not working
Last modified: August 18, 2016

---

# language not working

 *  [baga](https://wordpress.org/support/users/baga/)
 * (@baga)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/language-not-working/)
 * hi everybody,
    it seems that i’m not the only one having this problem but i haven’t
   understand how to solve it: i worked on a local copy of my website, installed
   worpress, everything worked fine. after i uploaded all the files and database
   on the web server i noticed that my admin panel only shows up in english and 
   not in italian which is my language. i did upload the files it_IT.mo and it_IT.
   po and i did setup the file wp-config.php adding define (‘WPLANG’, ‘it_IT’); 
   i emailed the hosting provider but they have no idea on how to solve this problem.
   if anyone can help, it will be very appreciated thanx

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/language-not-working/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/language-not-working/page/2/?output_format=md)

 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/language-not-working/#post-485588)
 * One thing you can ask your host if the gettext module is enabled on their server.
 *  Thread Starter [baga](https://wordpress.org/support/users/baga/)
 * (@baga)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/language-not-working/#post-485659)
 * thanks moshu, i have just asked them, i will let you know their answer.
    thanks
   a lot
 *  Thread Starter [baga](https://wordpress.org/support/users/baga/)
 * (@baga)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/language-not-working/#post-485673)
 * hi moshu,
    i have just received the answer from my hosting provider, they wrote:“
   Yes, we do have the gettext module installed on our servers. It is located in/
   usr/bin/gettext” what would you suggest me to do now?
 *  Thread Starter [baga](https://wordpress.org/support/users/baga/)
 * (@baga)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/language-not-working/#post-485691)
 * ANYONE CAN HELP???
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/language-not-working/#post-485692)
 * In that case everything should work fine.
    Is the it_IT.mo file in the right 
   place? (you need only the mo file, not the .po file)
 *  Thread Starter [baga](https://wordpress.org/support/users/baga/)
 * (@baga)
 * [19 years, 4 months ago](https://wordpress.org/support/topic/language-not-working/#post-485706)
 * the file it_IT.mo is in the directory wp-includes\languages
    i tried to look 
   for help in other forums too but still can’t find the answer 🙁
 *  Thread Starter [baga](https://wordpress.org/support/users/baga/)
 * (@baga)
 * [19 years, 4 months ago](https://wordpress.org/support/topic/language-not-working/#post-485712)
 * ANYONE CAN HELP???
 *  [boetter](https://wordpress.org/support/users/boetter/)
 * (@boetter)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/language-not-working/#post-485724)
 * Did anyone figure this out? I am having the exact same problem, just using a 
   danish translation.
 *  [emilgb](https://wordpress.org/support/users/emilgb/)
 * (@emilgb)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/language-not-working/#post-485727)
 * Jupp same problem, Im trying to install a norwegian language file
    I have two
   diffrent blogs on two diffrent servers, I cant figure out why it dont load the
   language file. I have changed the wp-config.php correct :
 * define (‘WPLANG’, ‘nb_NO’);
 * And upladed the file to the folder :
    (mywordpressinstallationfolder) wordpress\
   wp-includes\languages\nb_NO.mo
 * And this worked on the one server but on the other one it didnt. The one I have
   the problem on is runing:
 * Operating system Linux
    Kernel version 2.6.9-42.0.3.ELsmp Machine Type x86_64
   Apache version 1.3.37 (Unix) PERL version 5.8.7 PHP version 5.2.1 MySQL version
   4.1.21-standard
 * I have tryed to modify gettext.php to get things runing… but not so far.
 * Im dont know if the server have gettext module enabled, I have mail them to figure
   this out, But so far I dont have any idea of why this would`nt work… someone 
   please help me out.. I see others have the same problems 😉
 *  [emilgb](https://wordpress.org/support/users/emilgb/)
 * (@emilgb)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/language-not-working/#post-485729)
 * jupp got my answer, they where runing with gettext module enabled
    … People… 
   what is wrong? somebody please direct me towards innlightenment or what you call
   that stuff.. please lett there be a coder that sees this cryout for help 🙂
 *  [MDD](https://wordpress.org/support/users/mdd/)
 * (@mdd)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/language-not-working/#post-485733)
 * php 5.0 bug was corrected be entry in gettext.php file (wp-includes). This correction
   does not work with php 5.2.1
 * You need to edit **gettext.php** file
 * Find entry:
 *     ```
       if ($magic == ($MAGIC1 & 0xFFFFFFFF)) { // to make sure it works for 64-bit platforms
       $this->BYTEORDER = 0;
       } elseif ($magic == ($MAGIC2 & 0xFFFFFFFF)) {
       ```
   
 * Replace by:
 *     ```
       if ($magic == $MAGIC1) {
       $this->BYTEORDER = 0;
       } elseif ($magic == $MAGIC2) {
       ```
   
 * The solution was described there: [http://wordpress.dk/forum/topic/19](http://wordpress.dk/forum/topic/19)
 * It is working for me. WordPress 2.1.3 php 5.2.1
 *  [wifi_jirka](https://wordpress.org/support/users/wifi_jirka/)
 * (@wifi_jirka)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/language-not-working/#post-485734)
 * Hi, I have exact problem with language in admininitration section.
 * – Module gettext is enabled
 * I tried solution above, but it did not help in my case. Contrariwise, everything
   is much worse. Some text are OK now (in czech language), but some are still in
   English (just one half of administration menu).
    And some text became unreadable
   becouse there are now some “Egypt” characters.
 * php 5.2.1
    wordpress 2.1.2 gettext enabled
 * Any idea ?
 *  [kenanoff](https://wordpress.org/support/users/kenanoff/)
 * (@kenanoff)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/language-not-working/#post-485745)
 * Hi, Sorry for double-posting, but this seems to be more developed thread. I have
   the same problem, localization was OK until last week, then disappeared.
 * My system is:
    php 5.2.3 MySQL 5.0.41 gettext enabled (according to my host) 
   wordpress 2.1
 * Can please someone help on this?
 *  [kenanoff](https://wordpress.org/support/users/kenanoff/)
 * (@kenanoff)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/language-not-working/#post-485746)
 * For me – finally this did the trick
    [http://comox.textdrive.com/pipermail/wp-trac/2007-June/012844.html](http://comox.textdrive.com/pipermail/wp-trac/2007-June/012844.html)
 *  [mdsmds](https://wordpress.org/support/users/mdsmds/)
 * (@mdsmds)
 * [18 years, 6 months ago](https://wordpress.org/support/topic/language-not-working/#post-485758)
 * The bug hasn’t been fixed so far, it’s still included in 2.3.1-beta1. When can
   we expect a bugfix for this nasty problem?

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/language-not-working/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/language-not-working/page/2/?output_format=md)

The topic ‘language not working’ is closed to new replies.

## Tags

 * [language](https://wordpress.org/support/topic-tag/language/)
 * [Localization](https://wordpress.org/support/topic-tag/localization/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 19 replies
 * 12 participants
 * Last reply from: [zhiz0id](https://wordpress.org/support/users/zhiz0id/)
 * Last activity: [18 years, 6 months ago](https://wordpress.org/support/topic/language-not-working/page/2/#post-485764)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
