Bug #25384
closedFix Bug for polish hosting home.pl (dont work in BE tab web and everything in this tab)
0%
Description
If you have TYPO3 in home.pl hosting your tab WEB and all sub links (list,page,template..) can dont work but rest tabs will working ok.
You need add some change on /typo3/backend.php if you want repair this bug
remove this:
$relativeComponentPath = '../' . str_replace(PATH_site, '', $absoluteComponentPath);
add this:
if(PATH_site=='/') $relativeComponentPath = '../' .$absoluteComponentPath;
else $relativeComponentPath = '../' . str_replace(PATH_site, '', $absoluteComponentPath);
this helps me in TYPO3 4.5.2
small help for peaople how after install TYPO in this hosting can't show frontpage.
You need change index.php (look at uploaded file)
You can use this solution in other hosting if your problem are similar.
(issue imported from #M18024)
Files