1

Topic: translations in version 1.1.1

Hi,

I just installed punBB version 1.1.1 on my localhost for evaluation purpose.
after unzip of fr.zip, copy of the files in lang/fr (just near /en) and modification of config.php,I got

There is no valid language pack 'fr' installed. Plese check $language setting in config.php.

(same for nl translation)

can you help me? Where was I wrong?

regards
noël

Re: translations in version 1.1.1

What does your directory structure look like? It should look something like this:

/lang/en/
/lang/fr/
/lang/nl/
etc.

It almost sounds as if you placed the language pack PHP scripts directly into the lang directory.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

3

Re: translations in version 1.1.1

that's exactly my sud-dir config...
/lang/en/
/lang/fr/
/lang/nl/

Re: translations in version 1.1.1

Have you made any modifications to any of the language files? I'm thinking it might be this problem.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

5

Re: translations in version 1.1.1

the files were installed as downloaded!

6

Re: translations in version 1.1.1

this is my config.php file, may be this can help?

<?php

$db_type = 'mysql';
$db_host = 'localhost';
$db_name = 'mypunBB';
$db_username = '*****';
$db_password = '*****';
$db_prefix = 'punBB_';
$p_connect = true;

$cookie_name = 'punbb_cookie';
$cookie_domain = '';
$cookie_path = '/';
$cookie_secure = 0;

$language = 'en';

define('PUN', 1);

?>

Re: translations in version 1.1.1

Hmm. That's odd. I really don't know what could be causing this. Could you check that PHP has read access to the language files. If uncertain, try chmod:ing everything in the lang-directory to 777.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

8

Re: translations in version 1.1.1

set 777 permissions
it's now ok
thanks