Bug #46204
closedFileicons with HTTPS Backend not shown in Frontend
0%
Description
the setup:
- forced to display backend in https
So when I have a news (tt_news) and a news has files attached, they get listed with filelink() [class.tslib_content.php - 4035].
On line 4079, the path is gathered: $iconP = t3lib_extMgm::siteRelPath('cms') . 'tslib/media/fileicons/';
If the backend is forced to https though, the relpath to cms does not account for it and I get:
<img width="18" border="0" height="16" alt="" src="http://localhost/typo3/sysext/cms/tslib/media/fileicons/pdf.gif">
Which of course doesn't work, as all behind typo3/ is only reachable via https://
Updated by Ernesto Baschny over 11 years ago
- Status changed from New to Needs Feedback
Manuel,
what do you mean by "forced to display backend in https"? This is not a TYPO3 setting you are referring to, is it?
With TYPO3 you can enforce the backend to HTTPS via $TYPO3_CONF['BE']['lockSSL'] = 1
. This won't allow any backend activity without "https". But this still means that any resources are perfectly accessible through HTTP. So if the frontend gathers these files via HTTP it should be no problem (since they don't pass through TYPO3 at all: served directly by your Webserver.
So I suspect that you are "enforcing" https in some other way - maybe directly in your Webserver. This is not supported or considered by TYPO3.
Maybe you could elaborate a bit on what you are doing and why so that we can find a solution.
Updated by Alexander Opitz over 11 years ago
- Status changed from Needs Feedback to Closed
No feedback for over 90 days.