Bug #34690
closedmedia element does not work when BE with SSL
0%
Description
Dear TYPO3 Community,
When setting lockSSL to have the BE-Login with the secure protocol, the media content element does not include the necessary JS files as they are included like:
//add SWFobject js-file
$GLOBALS['TSFE']->getPageRenderer()->addJsFile(TYPO3_mainDir . 'contrib/flashmedia/swfobject/swfobject.js');
( file: class.tslib_content_shockwaveflashobject.php line: 60 )
$prefix is defined as:
$prefix = '';
if ($GLOBALS['TSFE']->baseUrl) {
$prefix = $GLOBALS['TSFE']->baseUrl;
}
if ($GLOBALS['TSFE']->absRefPrefix) {
$prefix = $GLOBALS['TSFE']->absRefPrefix;
}
( file: class.tslib_content_shockwaveflashobject.php line: 45 )
With lockSSL, the typo3/ folder is only accessible via https:// protocol, so the URL-request from the extension with http:// results in an ERR 500.
(discovered in TYPO3 version 4.5.5)