View Issue Details

IDProjectCategoryView StatusLast Update
0001185OXID eShop (all versions)1.09. Integrations: Facebook, Trusted Shops, Shop lupe, Econdapublic2012-12-11 08:47
ReporterSpritje Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionduplicate 
Product Version4.1.4 revision 21266 
Summary0001185: In EE4 it is not possible to track each subshop separately (eConda)
DescriptionIn EE2.7 it was possible to administer more than one econda account, using the function USE_MULTI_JS.

In EE4 the function is missing in file "oxemosadapter.php".

Mr. Rene Sato solver this Problem.
Additional InformationChanges in file core/smarty/plugins/oxemosadapter.php have to be implemented:

Change funtion:
protected function _getScriptPath()
    {
        $myConfig = $this->getConfig();
        $sShopUrl = $myConfig->isSsl() ? $myConfig->getConfigParam( 'sSSLShopURL' ) :
$myConfig->getConfigParam( 'sShopURL' );
        return "{$sShopUrl}modules/econda/out/";
    }

in function:
    protected function _getScriptPath()
    {

                        /*
                         * If set to true each sub shop will use a separate emos.js in
                         * the base template directory

                         * e.g. for shop1:/core/out/basic/basic/emos2.js

                         * e.g. for shop2:/core/out/basic/1/emos2.js

                         * e.g. for shop3:/core/out/basic/2/emos2.js
                         */
        $USE_MULTI_JS = false;
        $myConfig = $this->getConfig();
        $sShopUrl = $myConfig->isSsl() ? $myConfig->getConfigParam( 'sSSLShopURL' ) :
$myConfig->getConfigParam( 'sShopURL' );
        
        if ($USE_MULTI_JS){
            $rmvDom = strpos($myConfig->getBaseTemplateDir(),"/",9);
            $multiPath = substr($myConfig->getBaseTemplateDir(),$rmvDom+1);
            return "{$sShopUrl}{$multiPath}";
        }
        else {
            return "{$sShopUrl}modules/econda/out/";
       }
    }

More details see OTRS Ticket #125518 WG: econda - USE_MULTI_JS für Oxid4 EE
TagsEconda
Theme
BrowserAll
PHP Version5.2.6
Database Version5.0.33

Relationships

duplicate of 0001180 resolvedvilma_liorensaityte function "USE_MULTI_JS" is not included 

Activities

dainius.bigelis

2009-08-10 15:49

reporter   ~0001392

Reminder sent to: Spritje

Closed as duplicate of 0001180.