Page 5 of 5

Re: Multilanguage CMSMS MLE version 1.1.2

Posted: Thu Nov 15, 2007 1:08 pm
by alby
ottyscom wrote: But i have a big Problem about this.

When my website is visited from a browser or computer at the first the server will show an error:

NOT FOUND

The Server encountered an internal error or missconfiguration and was unable to complete your request


Corioosly when i visit the webpage for my browsers on my computer the website will shoen corectly without erro messages.

Who is the Problem? How can i solvent it?
I forgot locale row (in Reply #58)  if you remove from array.
- Try to modify in config_lang.php and delete 'mle' cookie (in this way you load at the first)
- If don't work, check httpd log for other info

Alby

Re: Multilanguage CMSMS MLE version 1.1.2

Posted: Thu Nov 15, 2007 2:45 pm
by ottyscom
Sorry i don't understand. Please can you correct my config-lang file so i can see the problem?

define('DEFAULT_LANG', 'de');
$force_mle_default = true;

$hls = array(


'de' => array(
'block'=>'de',
'flag'=>'',
'locale'=>'de-EURO',
),
'cat' => array(
'block'=>'ca',
'flag'=>'',
),
'es' => array(
'block'=>'es',
'flag'=>'',
),
'en' => array(
'block'=>'en',
'flag'=>'',
),

);


Note: I USe the Version 1.2

Re: Multilanguage CMSMS MLE version 1.1.2

Posted: Thu Nov 15, 2007 3:25 pm
by alby
ottyscom wrote: $hls = array(


'de' => array(
'block'=>'de',
'flag'=>'',
'locale'=>'de-EURO',
),
'cat' => array(
'block'=>'ca',
'flag'=>'',
),
'es' => array(
'block'=>'es',
'flag'=>'',
),
'en' => array(
'block'=>'en',
'flag'=>'',
),

);
No, this don't work
You mixed locale, parent lang and your code 'cat'

I check for enhanced flexibility for 1.2.1

Alby

Re: Multilanguage CMSMS MLE version 1.1.2

Posted: Thu Nov 15, 2007 4:00 pm
by ottyscom
So at the moment to make funcionallity my website what i have to do?

Re: Multilanguage CMSMS MLE version 1.1.2

Posted: Fri Nov 16, 2007 5:32 pm
by percusionista
Hi I need some hepl

in english it is all O.K.

but when I try edit the page content, aftel filling it all apperas a messagge: NO CONTENT GIVEN

Whera can be the problem, configuration? database?

please I need some help

thank you

Re: Multilanguage CMSMS MLE version 1.1.2

Posted: Fri Nov 16, 2007 5:41 pm
by alby
percusionista wrote: in english it is all O.K.

but when I try edit the page content, aftel filling it all apperas a messagge: NO CONTENT GIVEN

Whera can be the problem, configuration? database?
Check your db.
Have you read Installation and Trouble Shooting of neelesh?

Alby

how to get rid of the space between flags?

Posted: Sun Jan 27, 2008 9:39 pm
by slooodge
Dear Alby,

first of all thanks for this great mle! It works very well for me.
I have exchanged the flags for textlinks (D, E, etc.) to change the language.
But unfortunately there is always a space between the letters.
I have tried to sort it out with css but unfortunately the space stays.

Is there a way to get rid of the space between the flags (or textlinks)?

THANKS, Hannes

Re: how to get rid of the space between flags?

Posted: Sun Jan 27, 2008 9:52 pm
by alby
slooodge wrote: Dear Alby,

first of all thanks for this great mle! It works very well for me.
I have exchanged the flags for textlinks (D, E, etc.) to change the language.
But unfortunately there is always a space between the letters.
I have tried to sort it out with css but unfortunately the space stays.

Is there a way to get rid of the space between the flags (or textlinks)?
Read my answer for textlinks.
Between flags/text there are not space but a newlines, html transform this in space.
Are you sure of "attach" flags/text?

If you want to delete this, you must edit function.lang.php and modify (3 items) from:

Code: Select all

$selector .= "<a href="$link_url" $class>$link</a>$spacer\n";
to:

Code: Select all

$selector .= "<a href="$link_url" $class>$link</a>$spacer";
(drop final \n)

Alby

Re: Multilanguage CMSMS MLE version 1.1.2

Posted: Sun Jan 27, 2008 9:58 pm
by slooodge
Alby, you are the best!

Thanks