Hello,
I just have fun with IE9 in combination with RealUrl.
In Frontend we have added a RTE but it will not work in IE9.
After activating Debugmode I got a huge list of errormessages:
[HTMLArea.Iframe::getStyleSheets]: Stylesheets not yet loaded (Empty
rules and imports arrays).
And error_log of RealUrl table fills, too:
-------------------------------------------------------------------------
- sysext/rtehtmlarea/extensions/DefaultInline/skin/htmlarea.css
File "htmlarea.css" was not found (2)!
-
konto/beitrag/typo3temp/rtehtmlarea/defaultPageStyle_6d11d5671ff4b72f54b3.css
File "defaultPageStyle_6d11d5671ff4b72f54b3.css" was not found (2)!
- konto/beitrag/fileadmin/css/rte/content.css
File "content.css" was not found (2)!
-------------------------------------------------------------------------
Any ideas how to remove "konto/beitrag/" from path? What I'm doing wrong?
Stefan
Our realurl_autoconf.php is very simple (no really complex parts).
<?php
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array (
'_DEFAULT' => array (
'init' => array (
'enableCHashCache' => true,
'appendMissingSlash' => 'ifNotFile,redirect',
'adminJumpToBackend' => true,
'enableUrlDecodeCache' => true,
'enableUrlEncodeCache' => true,
'emptyUrlReturnValue' => '/',
),
'pagePath' => array (
'type' => 'user',
'userFunc' =>
'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'expireDays' => 7,
'rootpage_id' => 1,
'excludePageIds' => 2225,
),
'fixedPostVars' => array(),
'postVarSets' => array(
'_DEFAULT' => array(
'info' => array(
array(
'GETvar' => 'tx_ttnews[tt_news]',
'lookUpTable' => array(
'table' => 'tt_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
),
),
array(
'GETvar' => 'tx_ttnews[swords]',
),
),
),
),
'fileName' => array (
'defaultToHTMLsuffixOnPrev' => 1,
'acceptHTMLsuffix' => 1,
),
),
);
?>