View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001185 | OXID eShop (all versions) | 1.09. Integrations: Facebook, Trusted Shops, Shop lupe, Econda | public | 2009-08-10 15:00 | 2012-12-11 08:47 |
Reporter | Spritje | Assigned To | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | closed | Resolution | duplicate | ||
Product Version | 4.1.4 revision 21266 | ||||
Summary | 0001185: In EE4 it is not possible to track each subshop separately (eConda) | ||||
Description | In 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 Information | Changes 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 | ||||
Tags | Econda | ||||
Theme | |||||
Browser | All | ||||
PHP Version | 5.2.6 | ||||
Database Version | 5.0.33 | ||||
duplicate of | 0001180 | resolved | vilma_liorensaityte | function "USE_MULTI_JS" is not included |