View Issue Details

IDProjectCategoryView StatusLast Update
0005491OXID eShop (all versions)2. ----- eShop backend (admin) -----public2015-05-04 15:21
Reporterjoshua 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.8.0 / 5.1.0 
Target Version4.8.5 / 5.1.5Fixed in Version4.8.5 / 5.1.5 
Summary0005491: wysiwigpro not initalizing when having admin ssl url set
DescriptionIf 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 ReproduceJust open any page in admin having editor
Additional InformationThis is a possible workaround:


$sEditorUrl = oxConfig::getInstance()->getConfigParam('sShopURL')."core/{$sEditorPath}/";
if ( $sAdminSSLURL = $myConfig->getConfigParam( 'sAdminSSLURL' ). "../core/" ) {
    $sEditorUrl = "{$sAdminSSLURL}/{$sEditorPath}/";
}
TagsHTTPS, WYSIWYG
ThemeAll
BrowserAll
PHP Versionany
Database Versionany

Relationships

related to 0004989 resolvedtadas WYSIWYGPRO broken if Admin in SSL-Mode 
has duplicate 0005728 closedsvetlana wysiwigpro not initalizing when having admin ssl url set 

Activities

joshua

2013-11-02 17:42

reporter   ~0009206

The workaround means changing line 97 in file oxadmindetails.php

martinwegele

2013-11-04 10:25

reporter   ~0009210

Last edited: 2013-11-04 10:45

View 2 revisions

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

tadas

2014-01-07 17:03

reporter   ~0009386

Added fix applied to 5.0 version to 5.1

tadas

2014-02-24 08:55

reporter   ~0009588

SSL should load from ssl url, if defined, and from shop url, when not ssl, or ssl url is not defined.