langagues redirection

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
b.r bruss
Posts: 16
Joined: Thu 17. Jun 2004, 18:41

langagues redirection

Post by b.r bruss »

I do you set up langagues redirection? I tried to do like Oliver said and It doesn't work.

Code: Select all

[PHP] 
if(!$GLOBALS['aktion'][0]) { 

   switch( strtolower( substr( $_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2 ) ) ) { 
      case 'de':   header('Location: '.$GLOBALS['phpwcms']['site'].$GLOBALS['phpwcms']['root'].'index.php?de'); 
               exit(); 
               break; 
      default:   header('Location: '.$GLOBALS['phpwcms']['site'].$GLOBALS['phpwcms']['root'].'index.php?en'); 
               exit();       
   } 

} 
[/PHP]
I pasted this code in my header default template (edited to "fr" instead of "de")
I Did a translation of the summary page in french in the same structure level (article).
it's not working.
Do I have to edit some php code on WCMS to multilangual?
Well I am lost
i need heeeeeeeeelp.
thanks
Pappnase

Post by Pappnase »

hello

try this one!

Code: Select all

[PHP]
if(!$GLOBALS['aktion'][0]) {
	
	switch(strtolower( substr( $_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2 ) ) ) {
		
		case 'de':	header('Location: '. $GLOBALS['phpwcms']['site'].$GLOBALS['phpwcms']['root'].'index.php?deutsche_version'); 
    				exit(); 
    				break; 
    
    	default: 	header('Location: '.$GLOBALS['phpwcms']['site'].$GLOBALS['phpwcms']['root'].'index.php?english_version'); 
   					exit();
  }
}
[/PHP]
and place it in an article in the root dir!
and look that there is no redirection in the structurelevel! if you nderstand what i mean! :wink:
b.r bruss
Posts: 16
Joined: Thu 17. Jun 2004, 18:41

Post by b.r bruss »

OK, I'll check it out.
Thanks
Post Reply