[osCommerce] Multi language split on multiple domains
[osCommerce] Multi language split on multiple domains
I do not need the /NL or /DE so that is why I split it on two domains. Both websites use the same database so I have multiple language productnames in the database.
On both sites the category names and product names are the same language (dutch). How do I make the .de website select the german names from the database automatically ?
Re: [osCommerce] Multi language split on multiple domains
$unQueryLang
$unFancyLang
are both set to 4 (= dutch). While I want to set them to 2 (= german). Even if I set them manually in application_top.php:
$unQueryLang = 2 ;
$unFancyLang = 2 ;
include(DIR_WS_INCLUDES . 'magic_seo_url.php');
I still get the dutch language on the german site.
Re: [osCommerce] Multi language split on multiple domains
There is no way how to make it work correctly your way.
Developing multi-language mode was one of the most difficult feature ever - there are so many events which needs to be handled that changing anything outside the env. is nearly impossible. Some people say, no it is possible... then we can only say yes... but it will not work 100% correctly.
Re: [osCommerce] Multi language split on multiple domains
If it uses database_tables.php I think I might work around it..