View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005491 | OXID eShop (all versions) | 2. ----- eShop backend (admin) ----- | public | 2013-11-02 17:40 | 2015-05-04 15:21 |
Reporter | joshua | Assigned To | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.8.0 / 5.1.0 | ||||
Target Version | 4.8.5 / 5.1.5 | Fixed in Version | 4.8.5 / 5.1.5 | ||
Summary | 0005491: wysiwigpro not initalizing when having admin ssl url set | ||||
Description | If the config var "sAdminSSLURL" ist set, the path to wysiwigpro assets in shop backend is wrong. The path leads to /admin/wysiwigpro instead it should be /core/wysiwigpro. | ||||
Steps To Reproduce | Just open any page in admin having editor | ||||
Additional Information | This is a possible workaround: $sEditorUrl = oxConfig::getInstance()->getConfigParam('sShopURL')."core/{$sEditorPath}/"; if ( $sAdminSSLURL = $myConfig->getConfigParam( 'sAdminSSLURL' ). "../core/" ) { $sEditorUrl = "{$sAdminSSLURL}/{$sEditorPath}/"; } | ||||
Tags | HTTPS, WYSIWYG | ||||
Theme | All | ||||
Browser | All | ||||
PHP Version | any | ||||
Database Version | any | ||||
|
The workaround means changing line 97 in file oxadmindetails.php |
|
I think the behaviour was supposed to be fixed in 5.0.5 / 4.7.5: 0004989 But what are lines 107 - 109 good for? https://github.com/OXID-eSales/oxideshop_ce/blob/v4.8.0/source/application/controllers/admin/oxadmindetails.php#L108 |
|
Added fix applied to 5.0 version to 5.1 |
|
SSL should load from ssl url, if defined, and from shop url, when not ssl, or ssl url is not defined. |