View Issue Details

IDProjectCategoryView StatusLast Update
0002575OXID eShop (all versions)2. ----- eShop backend (admin) -----public2011-05-10 13:04
Reporter[email protected] Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.4.0 revision 28699 
Fixed in Version4.4.6 revision 32697 
Summary0002575: Then adding param: to $this->sAdminSSLURL in cofing site don't redirect correctly
DescriptionSo problem eas that site didn't redirect correctly to parameter sAdminSSLURL

what i did i changed oxconfig::getSslShopUrl()

public function getSslShopUrl( $iLang = null )
    {
        
        if($this->isAdmin()) {
            if ( ( $sAdminSSLURL = $this->getConfigParam( 'sAdminSSLURL' ) ) ) {
                $sAdminSSLURL = oxUtils::getInstance()->checkUrlEndingSlash( $sAdminSSLURL );
                $this->setConfigParam('sAdminDir', '');
                return $sAdminSSLURL;
            }
        }
        
        // 0000680 per language another URL
        $iLang = isset( $iLang ) ? $iLang : oxLang::getInstance()->getBaseLanguage();
        $aLanguageSSLURLs = $this->getConfigParam( 'aLanguageSSLURLs' );
        if ( isset( $iLang ) && isset( $aLanguageSSLURLs[$iLang] ) && !empty( $aLanguageSSLURLs[$iLang] ) ) {
            $aLanguageSSLURLs[$iLang] = oxUtils::getInstance()->checkUrlEndingSlash( $aLanguageSSLURLs[$iLang] );
            return $aLanguageSSLURLs[$iLang];
        }

        //mall mode
        if ( ( $sMallSSLShopURL = $this->getConfigParam( 'sMallSSLShopURL' ) ) ) {
            $sMallSSLShopURL = oxUtils::getInstance()->checkUrlEndingSlash( $sMallSSLShopURL );
            return $sMallSSLShopURL;
        }

        if ( ( $sMallShopURL = $this->getConfigParam( 'sMallShopURL' ) ) ) {
            $sMallShopURL = oxUtils::getInstance()->checkUrlEndingSlash( $sMallShopURL );
            return $sMallShopURL;
        }

        //normal section
        if ( ( $sSSLShopURL = $this->getConfigParam( 'sSSLShopURL' ) ) ) {
            return $sSSLShopURL;
        }

        return $this->getShopUrl( $iLang );
    }

TagsNo tags attached.
Theme
BrowserAll
PHP Versionany
Database Versionany

Activities

[email protected]

2011-03-02 10:38

reporter   ~0004164

sorry it seems it fixed in 4.4.6