Index: typo3/sysext/install/mod/class.tx_install.php =================================================================== --- typo3/sysext/install/mod/class.tx_install.php (revision 6691) +++ typo3/sysext/install/mod/class.tx_install.php (working copy) @@ -1820,8 +1820,8 @@ 'uploads/pics/' => array('Typical location for uploaded files (images especially).',0), 'uploads/media/' => array('Typical location for uploaded files (non-images especially).',0), 'uploads/tf/' => array('Typical location for uploaded files (TS template resources).',0), - 'fileadmin/' => array('Location for local files such as templates, independent uploads etc.',-1), - 'fileadmin/_temp_/' => array('Typical temporary location for default upload of files by administrators.',0), + $GLOBALS['TYPO3_CONF_VARS']['BE']['fileadminDir'] => array('Location for local files such as templates, independent uploads etc.',-1), + $GLOBALS['TYPO3_CONF_VARS']['BE']['fileadminDir'] . '_temp_/' => array('Typical temporary location for default upload of files by administrators.',0), ); foreach ($checkWrite as $relpath => $descr) { Index: t3lib/class.t3lib_tstemplate.php =================================================================== --- t3lib/class.t3lib_tstemplate.php (revision 6691) +++ t3lib/class.t3lib_tstemplate.php (working copy) @@ -225,7 +225,7 @@ // Sets the paths from where TypoScript resources are allowed to be used: $this->allowedPaths = Array( 'media/', - 'fileadmin/', + $GLOBALS['TYPO3_CONF_VARS']['BE']['fileadminDir'], // fileadmin/ path 'uploads/', 'typo3temp/', 't3lib/fonts/',