View Issue Details

IDProjectCategoryView StatusLast Update
0007782OXID eShop (all versions)2. ----- eShop backend (admin) -----public2025-04-04 17:48
ReporterOxidSimonGassenschmidt Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status acknowledgedResolutionopen 
Product Version6.5.4 
Summary0007782: Wrong Documentation Link in EE
DescriptionIf you click on the "Start Help" in an EE 6.5.4 (and all following editions if the system works) you will get redirectet to PE not EE. Because all Links are PE, checked in german and english.

Mostly this makes no different, but e.g. in the mall section the goal is different:
http://docu.oxid-esales.com/PE/6.5.4/1/admin/shop_mall.html
->
https://docs.oxid-esales.com/eshop/en/6.5/welcome/about-the-user-documentation.html

http://docu.oxid-esales.com/EE/6.5.4/1/admin/shop_mall.html
->
https://docs.oxid-esales.com/eshop/en/6.5/configuration/mall-function/mall-function.html
Steps To ReproduceInstall EE 6.5.4
See the Links under Start Help.
they should be EE, not PE.

Additional InformationCheck also this redirect handler:
https://github.com/OXID-eSales/documentation-redirect-handler/tree/master/data
There is PE and EE present, but only PE links are used.

Check also this code snippet in vendor/oxid-esales/oxideshop-ce/source/Application/Controller/Admin/AdminDetailsController.php where PE is fixed impemented, there is no override for EE:
 // generate help link
        $myConfig = $this->getConfig();
        $sDir = $myConfig->getConfigParam('sShopDir') . '/documentation/admin';
        if (is_dir($sDir)) {
            $sDir = $myConfig->getConfigParam('sShopURL') . 'documentation/admin';
        } else {
            $languageId = $this->getDocumentationLanguageId();
            $shopVersion = oxNew(ShopVersion::class)->getVersion();
            $sDir = "http://docu.oxid-esales.com/PE/{$shopVersion}/" . $languageId . '/admin';
        }

        $this->_aViewData['sHelpURL'] = $sDir;
TagsNo tags attached.
ThemeNot defined
BrowserNot defined
PHP VersionNot defined
Database VersionNot defined

Activities

There are no notes attached to this issue.