Quote Originally Posted by Jeet Kune Do View Post
I don't know how to write local.config to support my languages.
i have the slovenian, italian and english versions.

And i desire that my link will be www.myshop.com/it instead
www.myshop.com/shop/it

(shop is the map when zencart is installed)


Sorry my ignorance.


Best regards!
To move it from shop folder to root, it's out of the scope of this module, you will have to check zencart tutorial for that purpose:
http://www.zen-cart.com/forum/showthread.php?t=104968

After doing that, you MUST change the path in your .htaccess as well.

To add support for your languages try something like this:
PHP Code:
<?php
    
    $ssuLocalConfig 
= array(
      
        
        
'languages'        =>    array(    'it'    =>    'default',
                                    
'sl'    =>    'default',
                                    )
    );
Im assuming sl is the languages_code for slovenian