You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In RichTextElement class the skinFilename and skinDirectory are wrongly set. If your typo3 installation is in a subdirectory the paths are wrong so the cache files are empty.
I fixed it by setting the path manually like this :
// Get skin file name
$skinFilename = '/typo3conf/ext/rtehtmlarea/Resources/Public/Css/Skin/htmlarea.css';
$skinDirectory = '/typo3conf/ext/rtehtmlarea/Resources/Public/Css/Skin';
The text was updated successfully, but these errors were encountered:
Hi,
In RichTextElement class the skinFilename and skinDirectory are wrongly set. If your typo3 installation is in a subdirectory the paths are wrong so the cache files are empty.
I fixed it by setting the path manually like this :
The text was updated successfully, but these errors were encountered: