View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0007782 | OXID eShop (all versions) | 2. ----- eShop backend (admin) ----- | public | 2025-04-03 17:44 | 2025-04-04 17:48 |
Reporter | OxidSimonGassenschmidt | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | acknowledged | Resolution | open | ||
Product Version | 6.5.4 | ||||
Summary | 0007782: Wrong Documentation Link in EE | ||||
Description | If 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 Reproduce | Install EE 6.5.4 See the Links under Start Help. they should be EE, not PE. | ||||
Additional Information | Check 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; | ||||
Tags | No tags attached. | ||||
Theme | Not defined | ||||
Browser | Not defined | ||||
PHP Version | Not defined | ||||
Database Version | Not defined | ||||